(scope string)
| 22 | type Store interface { |
| 23 | Get(baseScope string, followExternalSymlinks bool, id interface{}) (user *User, err error) |
| 24 | GetByScope(scope string) (*User, error) |
| 25 | Gets(baseScope string, followExternalSymlinks bool) ([]*User, error) |
| 26 | Update(user *User, fields ...string) error |
| 27 | Save(user *User) error |
no outgoing calls