feat(PermissionFlagsBits): add PinMessages (#1340)

This commit is contained in:
Almeida
2025-08-20 19:26:07 +03:00
committed by GitHub
parent 51705cba50
commit b05df17466
2 changed files with 12 additions and 0 deletions
+6
View File
@@ -288,6 +288,12 @@ export const PermissionFlagsBits = {
* Applies to channel types: Text, Voice, Stage
*/
UseExternalApps: 1n << 50n,
/**
* Allows pinning and unpinning messages
*
* Applies to channel types: Text
*/
PinMessages: 1n << 51n,
} as const;
/**
+6
View File
@@ -288,6 +288,12 @@ export const PermissionFlagsBits = {
* Applies to channel types: Text, Voice, Stage
*/
UseExternalApps: 1n << 50n,
/**
* Allows pinning and unpinning messages
*
* Applies to channel types: Text
*/
PinMessages: 1n << 51n,
} as const;
/**