We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b8ea2 commit 996e9daCopy full SHA for 996e9da
src/app/admin/api-key/api-key.service.ts
@@ -51,7 +51,7 @@ export class ApiKeyService {
51
orderByColumn?: string,
52
orderByDirection?: string,
53
userId?: number,
54
- organisationId?: number
+ organizationId?: number
55
): Observable<ApiKeyGetManyResponse> {
56
if (userId) {
57
return this.restService.get(this.endpoint, {
@@ -61,13 +61,13 @@ export class ApiKeyService {
61
sort: orderByDirection,
62
userId,
63
});
64
- } else if (organisationId) {
+ } else if (organizationId) {
65
66
limit,
67
offset,
68
orderOn: orderByColumn,
69
70
- organisationId,
+ organizationId,
71
72
} else {
73
0 commit comments