Skip to content

Instantly share code, notes, and snippets.

@aamedina
Created December 17, 2013 22:10
Show Gist options
  • Select an option

  • Save aamedina/8013488 to your computer and use it in GitHub Desktop.

Select an option

Save aamedina/8013488 to your computer and use it in GitHub Desktop.
(defroutes targeting-criteria
(context "/accounts/:account-id" [account-id]
(GET "/targeting_criteria" [] "")
(GET "/targeting_criteria/:id" [id] id)
(POST "/targeting_criteria/:id" [id] id)
(PUT "/targeting_criteria/:id" [id] id)
(DELETE "/targeting_criteria/:id" [id] id)
(GET "/targeting_criteria/tailored_audiences" [])
(GET "/reach_estimate" [id])
(GET "/brands_tv" [id])
(GET "/targeting_suggestions" [id]))
(GET "/targeting_criteria/locations" [])
(GET "/targeting_criteria/interests" [])
(GET "/targeting_criteria/platforms" [])
(GET "/targeting_criteria/devices" [])
(GET "/targeting_criteria/tv_shows" [])
(GET "/targeting_criteria/tv_markets" [])
(GET "/targeting_criteria/platform_versions" []))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment