diff options
author | Joris | 2016-01-01 14:39:40 +0100 |
---|---|---|
committer | Joris | 2016-01-01 14:39:40 +0100 |
commit | 0d0c99fd28b782c7daf02fb5cc48d3eb252e705d (patch) | |
tree | 93f9836152b6db9fc7a7af34ceb1dde920b1f3c3 /src/client/elm/View | |
parent | 5f3d75406ef36924616e3289342647f4939d5004 (diff) |
Simplify persona usage
Diffstat (limited to 'src/client/elm/View')
-rw-r--r-- | src/client/elm/View/Header.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/View/Header.elm b/src/client/elm/View/Header.elm index 94bdb01..0cc2137 100644 --- a/src/client/elm/View/Header.elm +++ b/src/client/elm/View/Header.elm @@ -6,7 +6,7 @@ import Html exposing (..) import Html.Attributes exposing (..) import Html.Events exposing (..) -import Persona exposing (operations) +import ServerCommunication as SC exposing (serverCommunications) import Model exposing (Model) import Model.View exposing (..) @@ -25,7 +25,7 @@ renderHeader model = LoggedInView _ -> button [ class "icon" - , onClick operations.address Persona.SignOut + , onClick serverCommunications.address SC.SignOut ] [ renderIcon "power-off" ] _ -> |