chatAccessScopes.go 443 B

123456789101112
  1. package models
  2. const (
  3. // ScopeCanSendChatMessages will allow sending chat messages as itself.
  4. ScopeCanSendChatMessages = "CAN_SEND_MESSAGES"
  5. // ScopeCanSendSystemMessages will allow sending chat messages as the system.
  6. ScopeCanSendSystemMessages = "CAN_SEND_SYSTEM_MESSAGES"
  7. // ScopeHasAdminAccess will allow performing administrative actions on the server.
  8. ScopeHasAdminAccess = "HAS_ADMIN_ACCESS"
  9. ModeratorScopeKey = "MODERATOR"
  10. )