mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
5 lines
169 B
TypeScript
5 lines
169 B
TypeScript
import { config } from "config-manager";
|
|
|
|
export const oauthRedirectUri = (issuer: string) =>
|
|
new URL(`/oauth/callback/${issuer}`, config.http.base_url).toString();
|