11 lines
188 B
Go
11 lines
188 B
Go
package permissions
|
|
|
|
import (
|
|
"github.com/tech/sendico/pkg/auth"
|
|
"github.com/tech/sendico/pkg/model"
|
|
)
|
|
|
|
func Deny(_ *model.Account, _ *auth.Enforcer) (bool, error) {
|
|
return true, nil
|
|
}
|