LimitJournalAction -> LimitAction; LimitScope (#606)

This commit is contained in:
Michael Quigley
2024-05-14 13:24:48 -04:00
parent 4d67598acb
commit 75d58e84e4
7 changed files with 50 additions and 42 deletions

View File

@@ -1,11 +1,19 @@
package store
type LimitJournalAction string
type LimitAction string
const (
LimitAction LimitJournalAction = "limit"
WarningAction LimitJournalAction = "warning"
ClearAction LimitJournalAction = "clear"
LimitLimitAction LimitAction = "limit"
WarningLimitAction LimitAction = "warning"
ClearLimitAction LimitAction = "clear"
)
type LimitScope string
const (
AccountLimitScope LimitScope = "account"
EnvironmentLimitScope LimitScope = "environment"
ShareLimitScope LimitScope = "share"
)
type PermissionMode string