Skip to content

Commit

Permalink
Remove params from delete stage
Browse files Browse the repository at this point in the history
  • Loading branch information
simonv3 committed Aug 5, 2015
1 parent 711c1a0 commit 860d833
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ openFarmModule.factory('stageService', ['$http', '$log', '$q', 'alertsService',

var deleteStageWithPromise = function(stageId) {
return $q(function (resolve, reject) {
$http.delete('/api/v1/stages/' + stageId, params)
$http.delete('/api/v1/stages/' + stageId + '/')
.success(function (response) {
resolve();
}).error(function (response, code) {
Expand Down

0 comments on commit 860d833

Please sign in to comment.