|
@ -11,9 +11,9 @@ import {AuthService} from "./services/auth.service"; |
|
|
export class AppComponent { |
|
|
export class AppComponent { |
|
|
baseUtils: BaseUtils = new BaseUtils(); |
|
|
baseUtils: BaseUtils = new BaseUtils(); |
|
|
social_media_links: {link: string, name: string}[] = [ |
|
|
social_media_links: {link: string, name: string}[] = [ |
|
|
{name: "Дискорд", link: "/discord"}, |
|
|
{name: "Дискорд", link: "discord"}, |
|
|
{name: "Телеграм", link: "https://t.me/facti13"}, |
|
|
{name: "Телеграм", link: "https://t.me/facti13"}, |
|
|
{name: "Стим", link: "/steam"} |
|
|
{name: "Стим", link: "steam"} |
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
logined: string | null = null; |
|
|
logined: string | null = null; |
|
@ -22,8 +22,11 @@ export class AppComponent { |
|
|
public auth_service: AuthService) { |
|
|
public auth_service: AuthService) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
go2url(urls: string[]) { |
|
|
go2url(urls: string[], reopen: boolean = false) { |
|
|
this.router.navigate(urls) |
|
|
if (reopen) |
|
|
|
|
|
window.open(urls.join("/"), "_self") |
|
|
|
|
|
else |
|
|
|
|
|
this.router.navigate(urls) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
logout() { |
|
|
logout() { |
|
|