mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
84f108f1c5
License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com>
16 lines
353 B
Go
16 lines
353 B
Go
package auth
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
)
|
|
|
|
// Auther is the authentication interface.
|
|
type Auther interface {
|
|
// Auth is called to authenticate a request.
|
|
Auth(r *http.Request, s *users.Storage, root string) (*users.User, error)
|
|
// LoginPage indicates if this auther needs a login page.
|
|
LoginPage() bool
|
|
}
|