Skip to content

Commit f65b50c

Browse files
committed
docs: Document 403 for PATCH system
1 parent d3c62af commit f65b50c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/system/system.controller.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Body, Controller, ForbiddenException, Get, Param, Patch, Query} from '@nestjs/common';
2-
import {ApiOkResponse, ApiOperation, ApiQuery, ApiTags} from '@nestjs/swagger';
2+
import {ApiForbiddenResponse, ApiOkResponse, ApiOperation, ApiQuery, ApiTags} from '@nestjs/swagger';
33
import {Auth, AuthUser} from '../auth/auth.decorator';
44
import {User} from '../user/user.schema';
55
import {Throttled} from '../util/throttled.decorator';
@@ -52,6 +52,7 @@ export class SystemController {
5252
@Patch(':id')
5353
@ApiOperation({description: 'Update system details.'})
5454
@ApiOkResponse({type: System})
55+
@ApiForbiddenResponse({description: 'You are not the owner of this system.'})
5556
@NotFound('Game or system not found.')
5657
async update(
5758
@AuthUser() currentUser: User,
@@ -63,6 +64,7 @@ export class SystemController {
6364
const userEmpire = await this.empireService.findOne({user: currentUser._id, game});
6465
const owner = oldSystem.owner ?? dto.owner;
6566

67+
// TODO v3: Allow "explore" upgrade without being owner (handled by upgrade Job)
6668
if (!userEmpire?._id.equals(owner)) {
6769
throw new ForbiddenException('You are not the owner of this system.');
6870
}

0 commit comments

Comments
 (0)