mirror of
https://github.com/netbirdio/management-refactor.git
synced 2026-05-22 17:12:59 -07:00
15 lines
340 B
Go
15 lines
340 B
Go
package roles
|
|
|
|
import (
|
|
"github.com/netbirdio/management-refactor/internals/modules/users"
|
|
"github.com/netbirdio/management-refactor/internals/shared/permissions/operations"
|
|
)
|
|
|
|
var User = RolePermissions{
|
|
Role: users.UserRoleUser,
|
|
AutoAllowNew: map[operations.Operation]bool{
|
|
operations.Read: false,
|
|
operations.Write: false,
|
|
},
|
|
}
|