2019-10-29 15:23:50 -04:00
|
|
|
import EmberObject from "@ember/object";
|
2015-08-07 15:08:27 -04:00
|
|
|
import { i18n } from "discourse/lib/computed";
|
2023-10-10 14:38:59 -04:00
|
|
|
import RestModel from "discourse/models/rest";
|
2015-07-28 12:29:40 -04:00
|
|
|
|
2023-03-17 06:18:42 -04:00
|
|
|
export default class UserField extends RestModel {
|
|
|
|
static fieldTypes() {
|
2014-12-12 13:28:20 -05:00
|
|
|
if (!this._fieldTypes) {
|
|
|
|
this._fieldTypes = [
|
2015-07-28 12:29:40 -04:00
|
|
|
UserFieldType.create({ id: "text" }),
|
|
|
|
UserFieldType.create({ id: "confirm" }),
|
|
|
|
UserFieldType.create({ id: "dropdown", hasOptions: true }),
|
2021-06-29 02:29:25 -04:00
|
|
|
UserFieldType.create({ id: "multiselect", hasOptions: true }),
|
2014-12-12 13:28:20 -05:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._fieldTypes;
|
2023-03-17 06:18:42 -04:00
|
|
|
}
|
2014-09-25 11:32:08 -04:00
|
|
|
|
2023-03-17 06:18:42 -04:00
|
|
|
static fieldTypeById(id) {
|
2014-12-12 13:28:20 -05:00
|
|
|
return this.fieldTypes().findBy("id", id);
|
2023-03-17 06:18:42 -04:00
|
|
|
}
|
|
|
|
}
|
2014-09-25 11:32:08 -04:00
|
|
|
|
2023-03-17 06:18:42 -04:00
|
|
|
class UserFieldType extends EmberObject {
|
|
|
|
@i18n("id", "admin.user_fields.field_types.%@") name;
|
|
|
|
}
|