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

Commit

Permalink
fix(auth): shouldDisplayMFAEnrollment
Browse files Browse the repository at this point in the history
  • Loading branch information
lizardK committed Oct 23, 2019
1 parent eeca1cf commit 0bce620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/auth/auth.v6.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ angular.module('ovh-api-services').service('OvhApiAuthV6', ($resource, $http) =>
url: '/auth/shouldDisplayMFAEnrollment',
method: 'GET',
isArray: false,
transformResponse: (response) => {
transformResponse: $http.defaults.transformResponse.concat((response) => {
return {
value: response === "true"
};
},
}),
},
time: {
url: '/auth/time',
Expand Down

0 comments on commit 0bce620

Please sign in to comment.