discourse/app/assets/javascripts/admin/addon/models/user-field.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
734 B
JavaScript
Raw Normal View History

import EmberObject from "@ember/object";
2015-07-31 02:52:53 +08:00
import RestModel from "discourse/models/rest";
2015-08-08 03:08:27 +08:00
import { i18n } from "discourse/lib/computed";
export default class UserField extends RestModel {
static fieldTypes() {
2014-12-13 02:28:20 +08:00
if (!this._fieldTypes) {
this._fieldTypes = [
UserFieldType.create({ id: "text" }),
UserFieldType.create({ id: "confirm" }),
UserFieldType.create({ id: "dropdown", hasOptions: true }),
UserFieldType.create({ id: "multiselect", hasOptions: true }),
2014-12-13 02:28:20 +08:00
];
}
return this._fieldTypes;
}
static fieldTypeById(id) {
2014-12-13 02:28:20 +08:00
return this.fieldTypes().findBy("id", id);
}
}
class UserFieldType extends EmberObject {
@i18n("id", "admin.user_fields.field_types.%@") name;
}