Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { authenticate } from '@loopback/authentication';
import { Constructor, intercept, service } from '@loopback/core';
import { oas } from '@loopback/rest';
import { ExtendOptions, createBaseControllerFactory, BaseController, MixinOptions, } from '@logchain/controllers';
import { serialize } from '@logchain/interceptors';
import { Role } from '@logchain/models';
import { RoleDto } from '@logchain/dtos';
import { RoleService } from '@logchain/services';
/**
* Define the MixinOptions
*/
const options: MixinOptions = {
basePath: '/roles',
modelClass: Role,
modelDtoClass: RoleDto,
admin: false,
schemaOptions: {
find: {
exclude: [
'created_by',
'modified_by',
'created_date',
'modified_date',
'user_count',
'user_active',
'role_details',
],
},
},
};
const extendOptions: ExtendOptions = {
isExtendRead: true,
};
@oas.tags('Role')
@intercept(serialize(RoleDto))
@authenticate('aws-cognito')
export class RoleController extends createBaseControllerFactory<Role, Constructor<BaseController>>(BaseController, options, extendOptions) {
constructor(
@service(RoleService)
public selfService: RoleService,
) {
super();
}
}
|