(@Auth() auth: AuthDto)
| 34 | history: new HistoryBuilder().added('v1').beta('v1').stable('v2'), |
| 35 | }) |
| 36 | restoreTrash(@Auth() auth: AuthDto): Promise<TrashResponseDto> { |
| 37 | return this.service.restore(auth); |
| 38 | } |
| 39 | |
| 40 | @Post('restore/assets') |
| 41 | @Authenticated({ permission: Permission.AssetDelete }) |