20 lines
605 B
TypeScript
20 lines
605 B
TypeScript
import { Texts } from "./texts";
|
|
|
|
export class Urls {
|
|
static emailFrom = `${Texts.app_name}.com`;
|
|
static fastcode = "/";
|
|
|
|
static instagramUrl = "https://instagram.com";
|
|
static linkedinUrl = "https://linkedin.com";
|
|
static facebookUrl = "https://facebook.com";
|
|
static twitterUrl = "https://twitter.com";
|
|
|
|
// api urls
|
|
static baseUrl = "http://localhost:1337/api/auth/";
|
|
static register = "local/register";
|
|
static login = "local";
|
|
static forgotPassword = "forgot-password";
|
|
static sendEmailConfirmation = "send-email-confirmation";
|
|
static emailConfirmation = "email-confirmation";
|
|
}
|