mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
|
import { makeRestApiRequest } from '@/utils';
|
||
|
import { IRestApiContext } from '@/Interface';
|
||
|
|
||
|
export const initSSO = (context: IRestApiContext): Promise<string> => {
|
||
|
return makeRestApiRequest(context, 'GET', '/sso/saml/initsso');
|
||
|
};
|