Skip to content

Instantly share code, notes, and snippets.

@kieran
Created November 26, 2016 20:54
Show Gist options
  • Save kieran/722e1bb55329bf7cdd4b794b63b7a576 to your computer and use it in GitHub Desktop.
Save kieran/722e1bb55329bf7cdd4b794b63b7a576 to your computer and use it in GitHub Desktop.
module.exports =
getEvents: ->
store.dispatch type: 'GET_EVENTS'
$.ajax
type: "GET"
url: "/url_to_get_events_from"
dataType: 'json'
.done (data)->
store.dispatch
type: 'RECEIVE_EVENTS'
events: data.events
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment