outposts: fix schema for outposts health
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		| @ -11,7 +11,7 @@ import { DEFAULT_CONFIG } from "../../api/Config"; | ||||
| @customElement("ak-user-oauth-code-list") | ||||
| export class UserOAuthCodeList extends Table<ExpiringBaseGrantModel> { | ||||
|     @property() | ||||
|     userId?: string; | ||||
|     userId?: number; | ||||
|  | ||||
|     apiEndpoint(page: number): Promise<AKResponse<ExpiringBaseGrantModel>> { | ||||
|         return new Oauth2Api(DEFAULT_CONFIG).oauth2AuthorizationCodesList({ | ||||
|  | ||||
| @ -11,7 +11,7 @@ import { DEFAULT_CONFIG } from "../../api/Config"; | ||||
| @customElement("ak-user-oauth-refresh-list") | ||||
| export class UserOAuthRefreshList extends Table<ExpiringBaseGrantModel> { | ||||
|     @property() | ||||
|     userId?: string; | ||||
|     userId?: number; | ||||
|  | ||||
|     apiEndpoint(page: number): Promise<AKResponse<ExpiringBaseGrantModel>> { | ||||
|         return new Oauth2Api(DEFAULT_CONFIG).oauth2RefreshTokensList({ | ||||
|  | ||||
| @ -21,6 +21,7 @@ export const DefaultConfig: Config = { | ||||
|     errorReportingEnabled: false, | ||||
|     errorReportingEnvironment: "", | ||||
|     errorReportingSendPii: false, | ||||
|     uiFooterLinks: [], | ||||
| }; | ||||
|  | ||||
| @customElement("ak-sidebar-brand") | ||||
|  | ||||
| @ -11,7 +11,7 @@ import { DEFAULT_CONFIG } from "../../api/Config"; | ||||
| @customElement("ak-user-consent-list") | ||||
| export class UserConsentList extends Table<UserConsent> { | ||||
|     @property() | ||||
|     userId?: string; | ||||
|     userId?: number; | ||||
|  | ||||
|     apiEndpoint(page: number): Promise<AKResponse<UserConsent>> { | ||||
|         return new CoreApi(DEFAULT_CONFIG).coreUserConsentList({ | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer