Clean up basic-auth example
This commit is contained in:
parent
dc464fa480
commit
78da8e9a77
1 changed files with 15 additions and 14 deletions
|
@ -14,9 +14,14 @@ import GHC.Generics (Generic)
|
|||
import Network.Wai.Handler.Warp (run)
|
||||
import Servant.API ((:<|>) ((:<|>)), (:>), BasicAuth,
|
||||
Get, JSON)
|
||||
import Servant.API.Auth (BasicAuthData(BasicAuthData))
|
||||
import Servant.Server (AuthReturnType, BasicAuthResult (Authorized, Unauthorized), Config ((:.), EmptyConfig),
|
||||
Server, serve, BasicAuthCheck(BasicAuthCheck))
|
||||
import Servant.API.Auth (BasicAuthData (BasicAuthData))
|
||||
import Servant.Server (AuthReturnType,
|
||||
BasicAuthCheck (BasicAuthCheck),
|
||||
BasicAuthResult( Authorized
|
||||
, Unauthorized
|
||||
),
|
||||
Config ((:.), EmptyConfig), Server,
|
||||
serve)
|
||||
|
||||
-- | let's define some types that our API returns.
|
||||
|
||||
|
@ -50,10 +55,6 @@ type API = "public" :> PublicAPI
|
|||
api :: Proxy API
|
||||
api = Proxy
|
||||
|
||||
-- | a value holding a proxy of our basic auth realm.
|
||||
authRealm :: Proxy "foo-realm"
|
||||
authRealm = Proxy
|
||||
|
||||
-- | Specify the data type returned after performing basic authentication
|
||||
type instance AuthReturnType (BasicAuth "foo-realm") = User
|
||||
|
||||
|
|
Loading…
Reference in a new issue