mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-12 19:18:30 +00:00
9 lines
324 B
TypeScript
9 lines
324 B
TypeScript
import config from "@server/lib/config";
|
|
|
|
export function generateOidcRedirectUrl(idpId: number) {
|
|
const dashboardUrl = config.getRawConfig().app.dashboard_url;
|
|
const redirectPath = `/auth/idp/${idpId}/oidc/callback`;
|
|
const redirectUrl = new URL(redirectPath, dashboardUrl).toString();
|
|
return redirectUrl;
|
|
}
|