Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 39x 19x 19x | import {
getBaseUrl,
clientId,
} from "server/features/kompassi-login/kompassiLoginService";
import { AuthEndpoint } from "shared/constants/apiEndpoints";
export const getAuthUrl = (origin: string): string => {
const params = new URLSearchParams({
response_type: "code",
client_id: clientId,
redirect_uri: `${origin}${AuthEndpoint.KOMPASSI_LOGIN_CALLBACK}`,
scope: "read",
});
return `${getBaseUrl()}/oauth2/authorize?${params.toString()}`;
};
|