aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-05-13 14:40:46 -0500
committerMark Felder <feld@FreeBSD.org>2020-05-13 14:40:46 -0500
commit98d332793ccb8b73a8b5f6ec8893d0459412b242 (patch)
tree465879524e8fe6c71f052bef0eb60627ff3c95c1 /src
parent7a0e554daf843fe9e98053e79ec0114c380ededb (diff)
alpha sort
Diffstat (limited to 'src')
-rw-r--r--src/modules/instance.js47
1 files changed, 23 insertions, 24 deletions
diff --git a/src/modules/instance.js b/src/modules/instance.js
index ffece311..eeee115c 100644
--- a/src/modules/instance.js
+++ b/src/modules/instance.js
@@ -5,37 +5,36 @@ import { instanceDefaultProperties } from './config.js'
const defaultState = {
// Stuff from static/config.json and apiConfig
- name: 'Pleroma FE',
- registrationOpen: true,
- safeDM: true,
- textlimit: 5000,
- server: 'http://localhost:4040/',
- theme: 'pleroma-dark',
- themeData: undefined,
- background: '/static/aurora_borealis.jpg',
- logo: '/static/logo.png',
- logoMask: true,
- logoMargin: '.2em',
- redirectRootNoLogin: '/main/all',
- redirectRootLogin: '/main/friends',
- showInstanceSpecificPanel: false,
alwaysShowSubjectInput: true,
- hideMutedPosts: false,
+ background: '/static/aurora_borealis.jpg',
collapseMessageWithSubject: false,
+ disableChat: false,
+ greentext: false,
+ hideFilteredStatuses: false,
+ hideMutedPosts: false,
hidePostStats: false,
+ hideSitename: false,
hideUserStats: false,
- hideFilteredStatuses: false,
- disableChat: false,
+ logo: '/static/logo.png',
+ logoMargin: '.2em',
+ logoMask: true,
+ minimalScopesMode: false,
+ name: 'Pleroma FE',
+ nsfwCensorImage: undefined,
+ postContentType: 'text/plain',
+ redirectRootLogin: '/main/friends',
+ redirectRootNoLogin: '/main/all',
+ registrationOpen: true,
+ safeDM: true,
scopeCopy: true,
+ server: 'http://localhost:4040/',
+ showFeaturesPanel: true,
+ showInstanceSpecificPanel: false,
subjectLineBehavior: 'email',
- postContentType: 'text/plain',
- hideSitename: false,
- nsfwCensorImage: undefined,
+ textlimit: 5000,
+ theme: 'pleroma-dark',
+ themeData: undefined,
vapidPublicKey: undefined,
- noAttachmentLinks: false,
- showFeaturesPanel: true,
- minimalScopesMode: false,
- greentext: false,
// Nasty stuff
pleromaBackend: true,