chore: add Social Media Manager role and color to constants (#1084)

* chore: add Social Media Manager role and color to constants

* chore: bump version
This commit is contained in:
veryCrunchy
2025-04-23 14:52:27 +02:00
committed by GitHub
parent 038b71326c
commit 10278567fd
3 changed files with 5 additions and 1 deletions

View File

@@ -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",

View File

@@ -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",

View File

@@ -15,6 +15,8 @@ const staff = computed(() => {
"514546359865442304",
//* Support
"566417964820070421",
//* Social Media Manager
"1027665964684300358",
].includes(item?.user?.roleId || ""),
)
.sort(sortContributors) || []