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

Commit

Permalink
feat(vps): add rebuild and reinstall routes
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyDec authored and antleblanc committed Jul 24, 2019
1 parent b71966e commit da982b2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/vps/vps.v6.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ angular.module("ovh-api-services").service("OvhApiVpsV6", function ($resource, $
version: {
url: "/vps/:serviceName/version",
method: "GET"
},
rebuild: {
url: "/vps/:serviceName/rebuild",
method: "POST",
interceptor: interceptor
},
resintall: {
url: "/vps/:serviceName/reinstall",
method: "POST",
interceptor: interceptor
}
});

Expand Down

0 comments on commit da982b2

Please sign in to comment.