Commit 745498c 1 parent 23cfca8 commit 745498c Copy full SHA for 745498c
File tree 1 file changed +3
-1
lines changed
vehicles/src/modules/special-auth
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ import {
51
51
52
52
@ApiBearerAuth ( )
53
53
@ApiTags ( 'Letter of Authorization (LoA)' )
54
- @IsFeatureFlagEnabled ( 'LOA' )
55
54
@Controller ( 'companies/:companyId/loas' )
56
55
@ApiMethodNotAllowedResponse ( {
57
56
description : 'The LoA Api Method Not Allowed Response' ,
@@ -89,6 +88,7 @@ export class LoaController {
89
88
] ,
90
89
} )
91
90
@Post ( )
91
+ @IsFeatureFlagEnabled ( 'LOA' )
92
92
@UseInterceptors ( FileInterceptor ( 'file' ) , JsonReqBodyInterceptor )
93
93
async create (
94
94
@Req ( ) request : Request ,
@@ -164,6 +164,7 @@ export class LoaController {
164
164
] ,
165
165
} )
166
166
@Put ( '/:loaId' )
167
+ @IsFeatureFlagEnabled ( 'LOA' )
167
168
@UseInterceptors ( FileInterceptor ( 'file' ) , JsonReqBodyInterceptor )
168
169
async update (
169
170
@Req ( ) request : Request ,
@@ -202,6 +203,7 @@ export class LoaController {
202
203
] ,
203
204
} )
204
205
@Delete ( '/:loaId' )
206
+ @IsFeatureFlagEnabled ( 'LOA' )
205
207
async delete (
206
208
@Req ( ) request : Request ,
207
209
@Param ( ) { companyId, loaId } : LoaIdPathParamDto ,
You can’t perform that action at this time.
0 commit comments