mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
28 lines
652 B
JavaScript
28 lines
652 B
JavaScript
import RestModel from 'discourse/models/rest';
|
|
import { i18n } from 'discourse/lib/computed';
|
|
|
|
const UserField = RestModel.extend();
|
|
|
|
const UserFieldType = Ember.Object.extend({
|
|
name: i18n('id', 'admin.user_fields.field_types.%@')
|
|
});
|
|
|
|
UserField.reopenClass({
|
|
fieldTypes() {
|
|
if (!this._fieldTypes) {
|
|
this._fieldTypes = [
|
|
UserFieldType.create({ id: 'text' }),
|
|
UserFieldType.create({ id: 'confirm' }),
|
|
UserFieldType.create({ id: 'dropdown', hasOptions: true })
|
|
];
|
|
}
|
|
|
|
return this._fieldTypes;
|
|
},
|
|
|
|
fieldTypeById(id) {
|
|
return this.fieldTypes().findBy('id', id);
|
|
}
|
|
});
|
|
|
|
export default UserField;
|