12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
|
import { combineUrls } from "./utils";
|
||
|
|
||
|
type UrlTemplates = {
|
||
|
authentication: string;
|
||
|
};
|
||
|
|
||
|
const getUrlTemplates = (tuitioUrl: string): UrlTemplates => ({
|
||
|
authentication: combineUrls(tuitioUrl, "/identity/authenticate?UserName={username}&Password={password}")
|
||
|
});
|
||
|
|
||
|
export { getUrlTemplates };
|