Rename function.

This commit is contained in:
Dillon Kearns 2022-03-04 09:43:48 -08:00
parent 12c0013ea3
commit ac8f57b145
2 changed files with 5 additions and 5 deletions

View File

@ -54,7 +54,7 @@ data routeParams =
|> Result.withDefault Nothing |> Result.withDefault Nothing
|> Maybe.withDefault Session.empty |> Maybe.withDefault Session.empty
|> Session.insert "name" name |> Session.insert "name" name
|> Session.withFlash2 "message" ("Welcome " ++ name ++ "!") |> Session.withFlash "message" ("Welcome " ++ name ++ "!")
, "/greet" , "/greet"
|> Server.Response.temporaryRedirect |> Server.Response.temporaryRedirect
) )

View File

@ -1,8 +1,8 @@
module Server.Session exposing (Decoder, NotLoadedReason(..), Session(..), Value(..), clearFlashCookies, empty, expectSession, flashPrefix, get, insert, remove, setValues, succeed, unwrap, update, withFlash2, withSession) module Server.Session exposing (Decoder, NotLoadedReason(..), Session(..), Value(..), clearFlashCookies, empty, expectSession, flashPrefix, get, insert, remove, setValues, succeed, unwrap, update, withFlash, withSession)
{-| {-|
@docs Decoder, NotLoadedReason, Session, SessionUpdate, Value, clearFlashCookies, empty, expectSession, flash, flashPrefix, get, insert, noUpdates, oneUpdate, remove, setValues, succeed, unwrap, update, updateAllFields, withFlash, withFlash2, withSession @docs Decoder, NotLoadedReason, Session, SessionUpdate, Value, clearFlashCookies, empty, expectSession, flash, flashPrefix, get, insert, noUpdates, oneUpdate, remove, setValues, succeed, unwrap, update, updateAllFields, withFlash, withFlash, withSession
-} -}
@ -36,8 +36,8 @@ type Value
{-| -} {-| -}
withFlash2 : String -> String -> Session -> Session withFlash : String -> String -> Session -> Session
withFlash2 key value (Session session) = withFlash key value (Session session) =
session session
|> Dict.insert key (NewFlash value) |> Dict.insert key (NewFlash value)
|> Session |> Session