update 'share' implementation in store package to include permission mode (#432)

This commit is contained in:
Michael Quigley
2024-03-01 11:17:39 -05:00
parent 5cfd67ab19
commit 033d52c4c3
3 changed files with 26 additions and 4 deletions

View File

@ -7,3 +7,10 @@ const (
WarningAction LimitJournalAction = "warning"
ClearAction LimitJournalAction = "clear"
)
type PermissionMode string
const (
OpenPermissionMode PermissionMode = "open"
ClosedPermissionMode PermissionMode = "closed"
)