mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
27 lines
751 B
JavaScript
27 lines
751 B
JavaScript
/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
|
|
import DS from 'ember-data';
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
const {Model, attr} = DS;
|
|
|
|
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(),
|
|
ghost_head: attr('string'),
|
|
ghost_foot: attr('string'),
|
|
labs: attr('string'),
|
|
navigation: attr('string'),
|
|
isPrivate: attr('boolean'),
|
|
password: attr('string')
|
|
});
|