Added auth functionality, initial work with views and field types
This commit is contained in:
28
backend/src/models/user-role.model.ts
Normal file
28
backend/src/models/user-role.model.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import { BaseModel } from './base.model';
|
||||
|
||||
export class UserRole extends BaseModel {
|
||||
static tableName = 'user_roles';
|
||||
|
||||
id!: string;
|
||||
userId!: string;
|
||||
roleId!: string;
|
||||
|
||||
static relationMappings = {
|
||||
user: {
|
||||
relation: BaseModel.BelongsToOneRelation,
|
||||
modelClass: 'user.model',
|
||||
join: {
|
||||
from: 'user_roles.userId',
|
||||
to: 'users.id',
|
||||
},
|
||||
},
|
||||
role: {
|
||||
relation: BaseModel.BelongsToOneRelation,
|
||||
modelClass: 'role.model',
|
||||
join: {
|
||||
from: 'user_roles.roleId',
|
||||
to: 'roles.id',
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user