We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hoistServerWithContext
1 parent bc57cd8 commit abada8fCopy full SHA for abada8f
src/Servant/API/BrowserHeader.hs
@@ -9,6 +9,7 @@
9
{-# LANGUAGE ScopedTypeVariables #-}
10
{-# LANGUAGE TypeFamilies #-}
11
{-# LANGUAGE TypeOperators #-}
12
+{-# LANGUAGE TypeApplications #-}
13
{-# LANGUAGE UndecidableInstances #-}
14
15
module Servant.API.BrowserHeader where
@@ -45,6 +46,9 @@ instance ( KnownSymbol sym
45
46
47
route Proxy = route (Proxy :: Proxy (Header sym a :> sublayout))
48
49
+ hoistServerWithContext _ pc nt s =
50
+ hoistServerWithContext (Proxy @sublayout) pc nt . s
51
+
52
53
-- Ignore BrowserHeader in HasForeign:
54
instance (KnownSymbol sym, HasForeign lang ftype sublayout)
0 commit comments