bornhack-website/schedule/src/Messages.elm

21 lines
449 B
Elm
Raw Normal View History

module Messages exposing (Msg(..))
-- Local modules
2017-08-02 20:20:38 +00:00
import Models exposing (Day, EventType, EventLocation, EventInstance, VideoRecordingFilter)
-- External modules
import Navigation exposing (Location)
type Msg
= NoOp
| WebSocketPayload String
| ToggleEventTypeFilter EventType
| ToggleEventLocationFilter EventLocation
2017-08-02 20:20:38 +00:00
| ToggleVideoRecordingFilter VideoRecordingFilter
| OnLocationChange Location
| BackInHistory