Skip to content

Commit

Permalink
Merge pull request #67 from lucasponce/AlertFix
Browse files Browse the repository at this point in the history
Revert wrong GET url for single alert
  • Loading branch information
theute committed Nov 12, 2015
2 parents 281a0d4 + 2954986 commit 1df7a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rest/hawkRest-alert-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module hawkularRest {
var prefix = this.protocol + '://' + this.host + ':' + this.port;
var factory: any = {};

factory.Alert = $resource(prefix + '/hawkular/alerts', {
factory.Alert = $resource(prefix + '/hawkular/alerts/alert/:alertId', {
alertId: '@alertId'
}, {
query: {
Expand Down

0 comments on commit 1df7a4a

Please sign in to comment.