mirror of
https://github.com/documize/community.git
synced 2025-07-24 07:39:43 +02:00
New config setting: how many tags per document?
This commit is contained in:
parent
0743ae002c
commit
19736aab04
17 changed files with 827 additions and 731 deletions
|
@ -11,7 +11,6 @@
|
|||
|
||||
import Model from 'ember-data/model';
|
||||
import attr from 'ember-data/attr';
|
||||
// import { belongsTo, hasMany } from 'ember-data/relationships';
|
||||
|
||||
export default Model.extend({
|
||||
title: attr('string'),
|
||||
|
@ -19,6 +18,7 @@ export default Model.extend({
|
|||
email: attr('string'),
|
||||
conversionEndpoint: attr('string'),
|
||||
allowAnonymousAccess: attr('boolean', { defaultValue: false }),
|
||||
maxTags: attr('number', {defaultValue: 3}),
|
||||
created: attr(),
|
||||
revised: attr()
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue