Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
fixed errors in log, activity, nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravindra.Adireddy authored and Ganesh Kumar committed May 28, 2019
1 parent b26823d commit 8b101f4
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/analytics/platforms/platforms.v6.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,34 @@ angular.module("ovh-api-services").service("OvhApiAnalyticsPlatformsV6", functio
var adpResource = $resource("/analytics/platforms/:serviceName", {
serviceName: "@serviceName"
}, {
query: { method: "GET", isArray: true, cache: queryCache },
query: {
method: "GET",
isArray: true,
cache: queryCache
},
get: { method: "GET", cache: cache },
deploy: {
url: "/analytics/platforms/:serviceName/deploy",
method: "POST",
interceptor: interceptor
},
getActivity: {
url: "/analytics/platforms/{serviceName}/activity",
url: "/analytics/platforms/:serviceName/activity",
method: "GET",
isArray: true,
cache: cache
},
getNodes: {
url: "/analytics/platforms/{serviceName}/nodes",
url: "/analytics/platforms/:serviceName/nodes",
method: "GET",
isArray: true,
cache: cache
},
getStatus: {
url: "/analytics/platforms/{serviceName}/status",
url: "/analytics/platforms/:serviceName/status",
method: "GET",
interceptor: interceptor
isArray: true,
cache: cache
}
});

Expand Down

0 comments on commit 8b101f4

Please sign in to comment.