mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
29 lines
900 B
JavaScript
29 lines
900 B
JavaScript
/* eslint-disable camelcase */
|
|
import Model from 'ember-data/model';
|
|
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
|
|
import attr from 'ember-data/attr';
|
|
|
|
export default Model.extend(ValidationEngine, {
|
|
validationType: 'setting',
|
|
|
|
title: attr('string'),
|
|
description: attr('string'),
|
|
logo: attr('string'),
|
|
coverImage: attr('string'),
|
|
icon: attr('string'),
|
|
defaultLocale: attr('string'),
|
|
forceI18n: attr('boolean'),
|
|
permalinks: attr('string'),
|
|
activeTimezone: attr('string', {defaultValue: 'Etc/UTC'}),
|
|
ghostHead: attr('string'),
|
|
ghostFoot: 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'),
|
|
amp: attr('boolean')
|
|
});
|