Merge alpha 0.0.5 to master #54

Merged
niggl merged 292 commits from dev into main 2020-12-23 17:05:35 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 068e5bd72b - Show all commits

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[];