feat: introduce role mappings form on authentication page (#1256)

This commit is contained in:
kattoczko
2023-09-08 13:09:53 +01:00
committed by GitHub
parent ff66548462
commit d63757634a
12 changed files with 506 additions and 194 deletions

View File

@@ -430,6 +430,13 @@ type TSamlAuthProvider = {
loginUrl: string;
};
type TSamlAuthProviderRole = {
id: string;
samlAuthProviderId: string;
roleId: string;
remoteRoleName: string;
};
type AppConfig = {
id: string;
key: string;
@@ -453,7 +460,7 @@ type Notification = {
createdAt: string;
documentationUrl: string;
description: string;
}
};
declare module 'axios' {
interface AxiosResponse {