discourse/test/javascripts/fixtures/site_settings.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.2 KiB
JavaScript
Raw Normal View History

export default {
"/admin/site_settings": {
site_settings: [
{
setting: "title",
description: "The name of this site, as used in the title tag.",
default: "Discourse",
value: "Discourse",
category: "required",
preview: null,
secret: false,
2020-07-16 16:23:54 -04:00
type: "string"
},
{
setting: "contact_email",
description:
"Email address of key contact responsible for this site. Used for critical notifications, as well as on the /about contact form for urgent matters.",
default: "",
value: "",
category: "required",
preview: null,
secret: false,
2020-07-16 16:23:54 -04:00
type: "email"
},
{
setting: "site_contact_username",
description:
"A valid staff username to send all automated messages from. If left blank the default System account will be used.",
default: "",
value: "",
category: "required",
preview: null,
secret: false,
2020-07-16 16:23:54 -04:00
type: "username"
},
2018-11-14 02:03:02 -05:00
{
setting: "logo",
description: "Some logo",
default: "",
2020-07-16 16:23:54 -04:00
value: "/images/avatar.png",
2018-11-14 02:03:02 -05:00
category: "required",
preview: null,
secret: false,
2020-07-16 16:23:54 -04:00
type: "upload"
2018-11-14 02:03:02 -05:00
},
{
setting: "top_menu",
description:
"Determine which items appear in the homepage navigation, and in what order. Example latest|new|unread|categories|top|read|posted|bookmarks",
default: "latest|new|unread|top|categories",
value: "latest|new|unread|top|categories",
category: "basic",
preview: null,
secret: false,
type: "list",
choices: [
"latest",
"new",
"unread",
"top",
"categories",
"read",
"posted",
2020-07-16 16:23:54 -04:00
"bookmarks"
],
2020-07-16 16:23:54 -04:00
list_type: "compact"
},
{
setting: "plugin_logo",
description: "Some plugin logo",
default: "",
2020-07-16 16:23:54 -04:00
value: "/images/avatar.png",
category: "required",
preview: null,
secret: false,
type: "upload",
2020-07-16 16:23:54 -04:00
plugin: "discourse-logo"
}
],
diags: {
2020-07-16 16:23:54 -04:00
last_message_processed: null
}
}
};