Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

Commit

Permalink
Fix parameter order of StreamSearchController#exportAsCsv
Browse files Browse the repository at this point in the history
Fixes #1492
  • Loading branch information
Jochen Schalanda committed Jun 17, 2015
1 parent accca5c commit b295593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/routes
Expand Up @@ -40,7 +40,7 @@ GET /streams/:stream_id/edit
POST /streams/:stream_id/update @controllers.StreamsController.update(stream_id: String)
GET /streams/:stream_id/clone @controllers.StreamsController.cloneStreamForm(stream_id: String)
POST /streams/:stream_id/clone @controllers.StreamsController.cloneStream(stream_id: String)
GET /streams/:stream_id/csv @controllers.StreamSearchController.exportAsCsv(stream_id: String, q ?= "", rangetype ?= "", relative:Integer ?= -1, from ?= "", to ?= "", keyword ?= "", fields:String ?="")
GET /streams/:stream_id/csv @controllers.StreamSearchController.exportAsCsv(q ?= "", stream_id: String, rangetype ?= "", relative:Int ?= -1, from ?= "", to ?= "", keyword ?= "", fields:String ?="")

# Stream Outputs
GET /streams/:stream_id/outputs @controllers.StreamOutputsController.index(stream_id: String)
Expand Down

0 comments on commit b295593

Please sign in to comment.