From 10278567fd780340dbc60f4ae185d4aec725446d Mon Sep 17 00:00:00 2001 From: veryCrunchy Date: Wed, 23 Apr 2025 14:52:27 +0200 Subject: [PATCH] chore: add Social Media Manager role and color to constants (#1084) * chore: add Social Media Manager role and color to constants * chore: bump version --- apps/discord-bot/package.json | 2 +- apps/discord-bot/src/constants.ts | 2 ++ apps/website/pages/contributors.vue | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/discord-bot/package.json b/apps/discord-bot/package.json index eea06eb..a36cca3 100644 --- a/apps/discord-bot/package.json +++ b/apps/discord-bot/package.json @@ -1,7 +1,7 @@ { "name": "@premid/discord-bot", "type": "module", - "version": "1.0.7", + "version": "1.0.8", "private": true, "description": "PreMiD's discord bot", "license": "MPL-2.0", diff --git a/apps/discord-bot/src/constants.ts b/apps/discord-bot/src/constants.ts index bc5188f..9d2b9d1 100644 --- a/apps/discord-bot/src/constants.ts +++ b/apps/discord-bot/src/constants.ts @@ -36,6 +36,7 @@ export const roles = { SUPPORT_AGENT: "566417964820070421", MARKETING_DIRECTOR: "673681900476432387", LOCALIZATION_MANAGER: "811262682408943616", + SOCIALS_MANAGER: "1027665964684300358", REPRESENTATIVE: "691384256672563332", CONTRIBUTOR: "1032759805732978708", PATRON: "515874214750715904", @@ -58,6 +59,7 @@ export const roleColors = { SUPPORT_AGENT: "#D67118", MARKETING_DIRECTOR: "#3BA576", LOCALIZATION_MANAGER: "#3BA576", + SOCIALS_MANAGER: "#1abc9c", REPRESENTATIVE: "#3BA576", CONTRIBUTOR: "#EB459E", PATRON: "#E5472F", diff --git a/apps/website/pages/contributors.vue b/apps/website/pages/contributors.vue index 340b005..f7a534a 100644 --- a/apps/website/pages/contributors.vue +++ b/apps/website/pages/contributors.vue @@ -15,6 +15,8 @@ const staff = computed(() => { "514546359865442304", //* Support "566417964820070421", + //* Social Media Manager + "1027665964684300358", ].includes(item?.user?.roleId || ""), ) .sort(sortContributors) || []