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 | 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 { BaseController, ExtendOptions, MixinOptions, createBaseControllerFactory } from '@logchain/controllers';
import { serialize } from '@logchain/interceptors';
import { CollarTypeDto } from '@logchain/dtos';
import { CollarType } from '@logchain/models';
import { CollarTypeService } from '@logchain/services';
/**
* Define the MixinOptions
*/
const options: MixinOptions = {
basePath: '/collar-types',
modelClass: CollarType,
modelDtoClass: CollarTypeDto,
admin: false,
schemaOptions: {
find: {
exclude: [
'status',
'created_date',
'created_by',
'modified_date',
'modified_by',
],
},
},
};
const extendOptions: ExtendOptions = {
isExtendRead: true,
}
@oas.tags('CollarType')
@intercept(serialize(CollarTypeDto))
@authenticate('aws-cognito')
export class CollarTypeController extends createBaseControllerFactory<CollarType, Constructor<BaseController>>(BaseController, options, extendOptions) {
constructor(
@service(CollarTypeService)
public selfService: CollarTypeService,
) {
super();
}
}
|