Browse Source
Reorder parameters in propertyService put method
pull/7219/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
apps/api/src/app/admin/admin.service.ts
|
|
@ -349,8 +349,8 @@ export class AdminService { |
|
|
|
|
|
|
|
|
if (value) { |
|
|
if (value) { |
|
|
response = await this.propertyService.put({ |
|
|
response = await this.propertyService.put({ |
|
|
key: key as PropertyKey, |
|
|
value, |
|
|
value |
|
|
key: key as PropertyKey |
|
|
}); |
|
|
}); |
|
|
} else { |
|
|
} else { |
|
|
response = await this.propertyService.delete({ |
|
|
response = await this.propertyService.delete({ |
|
|
|