mirror of
https://dev.azure.com/tstanciu94/Packages/_git/tuitio-client
synced 2025-03-30 04:21:40 +03:00
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 };
|