feat(editor): SSO login button (#5615)

* feat(editor): SSO login button

* feat(editor): SSO login button

* feat(editor): SSO login button
This commit is contained in:
Csaba Tuncsik
2023-03-17 21:07:08 +01:00
committed by GitHub
parent e0ea97af8d
commit 6916628a9f
12 changed files with 144 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
import { makeRestApiRequest } from '@/utils';
import { IRestApiContext } from '@/Interface';
export const initSSO = (context: IRestApiContext): Promise<string> => {
return makeRestApiRequest(context, 'GET', '/sso/saml/initsso');
};