Fixed typo

ref #112
This commit is contained in:
2021-01-21 18:45:15 +01:00
parent 6434b4dfce
commit 46f9503543
3 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ export class CreateRunnerOrganisation extends CreateRunnerGroup {
*/
@IsOptional()
@IsBoolean()
registrtionEnabled?: boolean = false;
registrationEnabled?: boolean = false;
/**
* Creates a new RunnerOrganisation entity from this.
@@ -34,7 +34,7 @@ export class CreateRunnerOrganisation extends CreateRunnerGroup {
newRunnerOrganisation.address = this.address;
Address.validate(newRunnerOrganisation.address);
if (this.registrtionEnabled) {
if (this.registrationEnabled) {
newRunnerOrganisation.key = uuid.v4().toUpperCase();
}