Compare commits

..

No commits in common. "068e5bd72be54d5f84f141b14e486400ce15ca58" and "64725d9e7a75e3768ba1912989a94ac1ec741fb9" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

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

View File

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