20 lines
481 B
Haskell
20 lines
481 B
Haskell
---------------------------------------------------------
|
|
--
|
|
-- Module : Yesod.Constants
|
|
-- Copyright : Michael Snoyman
|
|
-- License : BSD3
|
|
--
|
|
-- Maintainer : Michael Snoyman <michael@snoyman.com>
|
|
-- Stability : Stable
|
|
-- Portability : portable
|
|
--
|
|
-- Constants used throughout Yesod.
|
|
--
|
|
---------------------------------------------------------
|
|
module Yesod.Constants
|
|
( authCookieName
|
|
) where
|
|
|
|
authCookieName :: String
|
|
authCookieName = "IDENTIFIER"
|