aboutsummaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-05-13 14:43:36 -0500
committerMark Felder <feld@FreeBSD.org>2020-05-13 14:43:36 -0500
commita4a25105babae42b04d173b44dcb8a2d797b87fc (patch)
tree50f4de79a27bb364aaad0e8e6e18cdd990c7c442 /src/modules
parent98d332793ccb8b73a8b5f6ec8893d0459412b242 (diff)
Separate the user configurable section
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/instance.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/instance.js b/src/modules/instance.js
index eeee115c..1b04032b 100644
--- a/src/modules/instance.js
+++ b/src/modules/instance.js
@@ -4,6 +4,9 @@ import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js'
import { instanceDefaultProperties } from './config.js'
const defaultState = {
+ // not user configurable
+ name: 'Pleroma FE',
+
// Stuff from static/config.json and apiConfig
alwaysShowSubjectInput: true,
background: '/static/aurora_borealis.jpg',
@@ -19,7 +22,6 @@ const defaultState = {
logoMargin: '.2em',
logoMask: true,
minimalScopesMode: false,
- name: 'Pleroma FE',
nsfwCensorImage: undefined,
postContentType: 'text/plain',
redirectRootLogin: '/main/friends',