Compare commits

..

2 Commits

Author SHA1 Message Date
068e5bd72b Merge branch 'dev' into feature/17-automated_tests
# Conflicts:
#	src/models/responses/ResponseEmpty.ts
2020-12-10 18:51:50 +01:00
bd07763455 Fix for the 404 in the swagger doc 2020-12-10 18:50:18 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,9 @@
import { IsString } from 'class-validator';
/**
* Defines a empty response object
*/
export class ResponseEmpty {
@IsString()
response: string = "nothing here"
}

View File

@ -24,7 +24,6 @@ export class ResponseRunnerOrganisation extends ResponseRunnerGroup {
/**
* The orgs associated teams.
*/
@IsObject()
@IsArray()
teams: RunnerTeam[];