Added auth functionality, initial work with views and field types
This commit is contained in:
46
backend/src/models/object-definition.model.ts
Normal file
46
backend/src/models/object-definition.model.ts
Normal file
@@ -0,0 +1,46 @@
|
||||
import { BaseModel } from './base.model';
|
||||
|
||||
export class ObjectDefinition extends BaseModel {
|
||||
static tableName = 'object_definitions';
|
||||
|
||||
id: string;
|
||||
apiName: string;
|
||||
label: string;
|
||||
pluralLabel?: string;
|
||||
description?: string;
|
||||
isSystem: boolean;
|
||||
isCustom: boolean;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
|
||||
static get jsonSchema() {
|
||||
return {
|
||||
type: 'object',
|
||||
required: ['apiName', 'label'],
|
||||
properties: {
|
||||
id: { type: 'string' },
|
||||
apiName: { type: 'string' },
|
||||
label: { type: 'string' },
|
||||
pluralLabel: { type: 'string' },
|
||||
description: { type: 'string' },
|
||||
isSystem: { type: 'boolean' },
|
||||
isCustom: { type: 'boolean' },
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
static get relationMappings() {
|
||||
const { FieldDefinition } = require('./field-definition.model');
|
||||
|
||||
return {
|
||||
fields: {
|
||||
relation: BaseModel.HasManyRelation,
|
||||
modelClass: FieldDefinition,
|
||||
join: {
|
||||
from: 'object_definitions.id',
|
||||
to: 'field_definitions.objectDefinitionId',
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user