Skip to content

Commit 996e9da

Browse files
committed
Spell organization with "z"
1 parent c2b8ea2 commit 996e9da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/admin/api-key/api-key.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class ApiKeyService {
5151
orderByColumn?: string,
5252
orderByDirection?: string,
5353
userId?: number,
54-
organisationId?: number
54+
organizationId?: number
5555
): Observable<ApiKeyGetManyResponse> {
5656
if (userId) {
5757
return this.restService.get(this.endpoint, {
@@ -61,13 +61,13 @@ export class ApiKeyService {
6161
sort: orderByDirection,
6262
userId,
6363
});
64-
} else if (organisationId) {
64+
} else if (organizationId) {
6565
return this.restService.get(this.endpoint, {
6666
limit,
6767
offset,
6868
orderOn: orderByColumn,
6969
sort: orderByDirection,
70-
organisationId,
70+
organizationId,
7171
});
7272
} else {
7373
return this.restService.get(this.endpoint, {

0 commit comments

Comments
 (0)