Auther is the authentication interface.
| 9 | |
| 10 | // Auther is the authentication interface. |
| 11 | type Auther interface { |
| 12 | // Auth is called to authenticate a request. |
| 13 | Auth(r *http.Request, usr users.Store, stg *settings.Settings, srv *settings.Server) (*users.User, error) |
| 14 | // LoginPage indicates if this auther needs a login page. |
| 15 | LoginPage() bool |
| 16 | } |
no outgoing calls
no test coverage detected