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

fix(me.contact): replace Apiv7Endpoint by apiv7 service #144

Merged
merged 1 commit into from
Mar 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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