Documentation
¶
Overview ¶
Package adapter implements the functions, types, and interfaces for the module.
Package adapter is the memory adapter for Casbin.
Index ¶
- func NewFile(path string) *fileadapter.Adapter
- type Adapter
- func (a *Adapter) AddPolicy(sec string, ptype string, rule []string) error
- func (a *Adapter) LoadPolicy(m model.Model) error
- func (a *Adapter) RemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues ...string) error
- func (a *Adapter) RemovePolicy(sec string, ptype string, rule []string) error
- func (a *Adapter) SavePolicy(m model.Model) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFile ¶
func NewFile(path string) *fileadapter.Adapter
Types ¶
type Adapter ¶
type Adapter struct {
// contains filtered or unexported fields
}
Adapter is an in-memory adapter for Casbin. It's useful for testing or for scenarios where policies are not persisted.
func NewWithPolicies ¶
NewWithPolicies creates a new in-memory adapter with pre-defined policies.
func (*Adapter) LoadPolicy ¶
LoadPolicy loads all policy rules from the storage.
func (*Adapter) RemoveFilteredPolicy ¶
func (a *Adapter) RemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues ...string) error
RemoveFilteredPolicy removes policy rules that match the filter from the storage.
func (*Adapter) RemovePolicy ¶
RemovePolicy removes a policy rule from the storage.
Click to show internal directories.
Click to hide internal directories.