Files
sendico/api/edge/bff/interface/api/permissions/donotcheck.go
2026-02-28 00:39:20 +01:00

11 lines
194 B
Go

package permissions
import (
"github.com/tech/sendico/pkg/auth"
"github.com/tech/sendico/pkg/model"
)
func DoNotCheck(_ *model.Account, _ *auth.Enforcer) (bool, error) {
return true, nil
}