mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
6d22a6dcb6
no issue - Changes the default timezone from 'Europe/Dublin' to 'Etc/UTC' in setting model - Updates acceptance test for settings general to expect more timezones in list and different default - adds mirage fixtures values
30 lines
966 B
JavaScript
30 lines
966 B
JavaScript
/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
|
|
import Model from 'ember-data/model';
|
|
import attr from 'ember-data/attr';
|
|
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
|
|
|
|
export default Model.extend(ValidationEngine, {
|
|
validationType: 'setting',
|
|
|
|
title: attr('string'),
|
|
description: attr('string'),
|
|
logo: attr('string'),
|
|
cover: attr('string'),
|
|
defaultLang: attr('string'),
|
|
postsPerPage: attr('number'),
|
|
forceI18n: attr('boolean'),
|
|
permalinks: attr('string'),
|
|
activeTheme: attr('string'),
|
|
availableThemes: attr(),
|
|
activeTimezone: attr('string', {defaultValue: 'Etc/UTC'}),
|
|
ghost_head: attr('string'),
|
|
ghost_foot: attr('string'),
|
|
facebook: attr('facebook-url-user'),
|
|
twitter: attr('twitter-url-user'),
|
|
labs: attr('string'),
|
|
navigation: attr('navigation-settings'),
|
|
isPrivate: attr('boolean'),
|
|
password: attr('string'),
|
|
slack: attr('slack-settings')
|
|
});
|