Skip to content

Commit

Permalink
fix(tf2pickup.ru): add discord invitation (#1200)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Sep 3, 2021
1 parent 2549ed4 commit ce68ee9
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/environments/tf2pickup.ru.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
import { defaultEnvironment } from './default-environment';
import { defaultFooterLinks } from './default-footer-links';

const discordInvitation = 'https://discord.gg/jUATV48cYQ';

export const environment = {
...defaultEnvironment,
apiUrl: 'https://api.tf2pickup.ru',
wsUrl: 'https://api.tf2pickup.ru',
headerLinks: [],
footerLinks: [...defaultFooterLinks],
titleSuffix: 'tf2pickup.ru • тф2пикап по-русски?',
headerLinks: [
{
name: 'discord',
icon: '/assets/ui_icon_discord.png',
target: discordInvitation,
tooltip: 'Join us on discord!',
},
],
footerLinks: [
...defaultFooterLinks,
{ name: 'discord', target: discordInvitation },
],
titleSuffix: 'tf2pickup.ru • Русские пикапы',
};

0 comments on commit ce68ee9

Please sign in to comment.