feature/17-automated_tests #21

Merged
niggl merged 56 commits from feature/17-automated_tests into dev 2020-12-10 19:36:08 +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[];