3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-16 14:45:02 +00:00

chore: sort permissions alphabetically

This commit is contained in:
Ruby 2024-06-02 18:27:57 +02:00
parent 9aca2d5f26
commit e34690ff6c
No known key found for this signature in database
GPG key ID: 74D9DB37B03A4804

View file

@ -8,6 +8,8 @@ export const PERMISSION_NAMES = {
BanMembers: "Ban Members",
ChangeNickname: "Change Nickname",
Connect: "Connect",
CreateEvents: "Create Events",
CreateGuildExpressions: "Create Expressions",
CreateInstantInvite: "Create Invite",
CreatePrivateThreads: "Create Private Threads",
CreatePublicThreads: "Create Public Threads",
@ -16,13 +18,16 @@ export const PERMISSION_NAMES = {
KickMembers: "Kick Members",
ManageChannels: "Manage Channels",
ManageEmojisAndStickers: "Manage Emojis and Stickers",
ManageEvents: "Manage Events",
ManageGuild: "Manage Server",
ManageGuildExpressions: "Manage Expressions",
ManageMessages: "Manage Messages",
ManageNicknames: "Manage Nicknames",
ManageRoles: "Manage Roles",
ManageThreads: "Manage Threads",
ManageWebhooks: "Manage Webhooks",
MentionEveryone: `Mention @${EMPTY_CHAR}everyone, @${EMPTY_CHAR}here, and All Roles`,
ModerateMembers: "Moderate Members",
MoveMembers: "Move Members",
MuteMembers: "Mute Members",
PrioritySpeaker: "Priority Speaker",
@ -30,26 +35,20 @@ export const PERMISSION_NAMES = {
RequestToSpeak: "Request to Speak",
SendMessages: "Send Messages",
SendMessagesInThreads: "Send Messages in Threads",
SendPolls: "Create Polls",
SendTTSMessages: "Send Text-To-Speech Messages",
SendVoiceMessages: "Send Voice Messages",
Speak: "Speak",
UseEmbeddedActivities: "Start Embedded Activities",
Stream: "Video",
UseApplicationCommands: "Use Application Commands",
UseEmbeddedActivities: "Start Embedded Activities",
UseExternalEmojis: "Use External Emoji",
UseExternalSounds: "Use External Sounds",
UseExternalStickers: "Use External Stickers",
UseSoundboard: "Use Soundboard",
UseVAD: "Use Voice Activity",
ViewAuditLog: "View Audit Log",
ViewChannel: "View Channels",
ViewGuildInsights: "View Guild Insights",
ModerateMembers: "Moderate Members",
ManageEvents: "Manage Events",
ManageGuildExpressions: "Manage Expressions",
SendVoiceMessages: "Send Voice Messages",
UseExternalSounds: "Use External Sounds",
UseSoundboard: "Use Soundboard",
ViewCreatorMonetizationAnalytics: "View Creator Monetization Analytics",
SendPolls: "Allows Sending Polls",
CreateEvents: "Allows for creating scheduled events, and editing and deleting those created by the current user.",
CreateGuildExpressions:
"Allows for creating emojis, stickers, and soundboard sounds, and editing and deleting those created by the current user.",
ViewGuildInsights: "View Guild Insights",
} as const satisfies Record<keyof typeof PermissionFlagsBits, string>;