2024-05-04 11:58:10 -07:00
|
|
|
package domain
|
|
|
|
|
|
|
|
const (
|
2024-05-07 19:14:37 -07:00
|
|
|
ScopeAll = "newsbot:all"
|
|
|
|
|
|
|
|
ScopeArticleRead = "newsbot:article:read"
|
|
|
|
ScopeArticleDisable = "newsbot:article:disable"
|
|
|
|
|
|
|
|
ScopeSourceRead = "newsbot:source:read"
|
|
|
|
ScopeSourceCreate = "newsbot:source:create"
|
|
|
|
|
2024-05-07 18:19:41 -07:00
|
|
|
ScopeDiscordWebHookCreate = "newsbot:discordwebhook:create"
|
2024-05-07 19:14:37 -07:00
|
|
|
ScopeDiscordWebhookRead = "newsbot:discordwebhook:read"
|
2024-05-04 11:58:10 -07:00
|
|
|
)
|