saleor-dashboard/src/auth/urls.ts

18 lines
589 B
TypeScript
Raw Normal View History

2019-09-02 19:23:37 +00:00
import { stringify as stringifyQs } from "qs";
export const loginPath = "/login/";
export const loginUrl = loginPath;
export const passwordResetPath = "/reset-password/";
export const passwordResetUrl = passwordResetPath;
export const passwordResetSuccessPath = "/reset-password/success/";
export const passwordResetSuccessUrl = passwordResetSuccessPath;
export const newPasswordPath = "/new-password/";
export interface NewPasswordUrlQueryParams {
token: string;
}
export const newPasswordUrl = (params?: NewPasswordUrlQueryParams) =>
newPasswordPath + "?" + stringifyQs(params);