Start work on account display
Also no idea wtf is going on with the models
This commit is contained in:
parent
9acecfd7f6
commit
5fb5dae31e
14 changed files with 225 additions and 152 deletions
|
@ -1,16 +1,16 @@
|
|||
import Model, { attr } from '@ember-data/model'
|
||||
import Model, { attr } from '@ember-data/model';
|
||||
|
||||
export default class CustomAccountField extends Model {
|
||||
@attr declare createdAt: Date
|
||||
@attr declare updatedAt: Date
|
||||
@attr declare key: string
|
||||
@attr declare value: string
|
||||
@attr declare verified?: boolean
|
||||
@attr declare belongsToId: string
|
||||
@attr declare createdAt: Date;
|
||||
@attr declare updatedAt: Date;
|
||||
@attr declare key: string;
|
||||
@attr declare value: string;
|
||||
@attr declare verified?: boolean;
|
||||
@attr declare belongsToId: string;
|
||||
}
|
||||
|
||||
declare module 'ember-data/types/registries/model' {
|
||||
export default interface ModelRegistry {
|
||||
customAccountField: CustomAccountField
|
||||
customAccountField: CustomAccountField;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue