aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Persona.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Persona.elm')
-rw-r--r--src/client/elm/Persona.elm14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/client/elm/Persona.elm b/src/client/elm/Persona.elm
index e55d1b2..d5e1d6a 100644
--- a/src/client/elm/Persona.elm
+++ b/src/client/elm/Persona.elm
@@ -1,8 +1,6 @@
module Persona
( Operation(..)
, operations
- , fromString
- , toString
) where
type Operation =
@@ -11,15 +9,3 @@ type Operation =
operations : Signal.Mailbox Operation
operations = Signal.mailbox NoOp
-
-fromString : String -> Operation
-fromString str =
- case str of
- "SignIn" -> SignIn
- _ -> NoOp
-
-toString : Operation -> String
-toString operation =
- case operation of
- SignIn -> "SignIn"
- _ -> "NoOp"