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

Commit

Permalink
fix(me.contact): replace Apiv7Endpoint by apiv7 service (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
antleblanc authored Mar 12, 2019
1 parent 800e10c commit 6aed865
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/ovh-api-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -9393,13 +9393,13 @@ angular.module("ovh-api-services").service("OvhApiMeContactV6", ["$resource", "$

}]);

angular.module("ovh-api-services").service("OvhApiMeContactV7", ["$resource", "$cacheFactory", "Apiv7Endpoint", function ($resource, $cacheFactory, Apiv7Endpoint) {
angular.module("ovh-api-services").service("OvhApiMeContactV7", ["$resource", "$cacheFactory", "apiv7", function ($resource, $cacheFactory, apiv7) {
"use strict";

var queryCache = $cacheFactory("OvhApiMeContactv7Query");
var otherCache = $cacheFactory("OvhApiMeContactV7");

var userContactResource = new Apiv7Endpoint("/me/contact/:contactId", {
var userContactResource = apiv7("/me/contact/:contactId", {
contactId: "@contactId"
}, {
query: {
Expand Down
Loading

0 comments on commit 6aed865

Please sign in to comment.