2017-07-17 09:25:57 +00:00
|
|
|
module Messages exposing (Msg(..))
|
|
|
|
|
|
|
|
-- Local modules
|
|
|
|
|
2017-08-16 16:08:34 +00:00
|
|
|
import Models exposing (Day, EventInstance, FilterType)
|
2017-07-17 09:25:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
-- External modules
|
|
|
|
|
|
|
|
import Navigation exposing (Location)
|
|
|
|
|
|
|
|
|
|
|
|
type Msg
|
|
|
|
= NoOp
|
|
|
|
| WebSocketPayload String
|
2017-08-16 16:08:34 +00:00
|
|
|
| ToggleFilter FilterType
|
2017-07-17 09:25:57 +00:00
|
|
|
| OnLocationChange Location
|
2017-07-19 16:30:50 +00:00
|
|
|
| BackInHistory
|