Up – Package index » sihl » Sources » sihl.middleware » middleware_cookie.mlSource file middleware_cookie.ml sihl CHANGES README Library sihl Library sihl.authn Library sihl.authz Library sihl.core Library sihl.database Library sihl.email Library sihl.http Library sihl.message Library sihl.middleware Library sihl.migration Library sihl.password-reset Library sihl.queue Library sihl.repository Library sihl.schedule Library sihl.session Library sihl.storage Library sihl.token Library sihl.user Library sihl.utils Sources sihl sihl.authn sihl.authz sihl.core sihl.database sihl.email sihl.http sihl.message sihl.middleware sihl.migration sihl.password-reset sihl.queue sihl.repository sihl.schedule sihl.session sihl.storage sihl.token sihl.user sihl.utils 1
2
3
4
5
6
7
8
let m ( ) =
let filter handler ctx =
Logs . warn ( fun m -> m "WEB: Cookie middleware is not implemented" ) ;
handler ctx
in
Opium_kernel . Rock . Middleware . create ~name: "cookie" ~ filter
;;