tuitio-client/src/config.ts

12 lines
296 B
TypeScript
Raw Normal View History

2023-02-10 01:27:38 +02:00
import { combineUrls } from "./utils";
type UrlTemplates = {
authentication: string;
};
const getUrlTemplates = (tuitioUrl: string): UrlTemplates => ({
authentication: combineUrls(tuitioUrl, "/identity/authenticate?UserName={username}&Password={password}")
});
export { getUrlTemplates };