discourse/app/assets/javascripts/admin/addon/models/user-field.js
David Taylor 48193767bf DEV: Sort imports
Automatically generated by `eslint --fix` to satisfy the updated configuration
2023-10-10 21:46:54 +01:00

27 lines
734 B
JavaScript

import EmberObject from "@ember/object";
import { i18n } from "discourse/lib/computed";
import RestModel from "discourse/models/rest";
export default class UserField extends RestModel {
static fieldTypes() {
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 }),
];
}
return this._fieldTypes;
}
static fieldTypeById(id) {
return this.fieldTypes().findBy("id", id);
}
}
class UserFieldType extends EmberObject {
@i18n("id", "admin.user_fields.field_types.%@") name;
}