Skip to content
This repository was archived by the owner on Dec 23, 2019. It is now read-only.

Commit 4ed063f

Browse files
committed
fix(dependecy injection): add missing ng-inject
1 parent 9ab4722 commit 4ed063f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ovh-angular-sso-auth.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ export default function () {
387387
};
388388
};
389389

390-
this.$get = function ($q, $timeout, $location, $window, $cookies) {
390+
this.$get = /* @ngInject */ function ($q, $timeout, $location, $window, $cookies) {
391391
return new Authentication($q, $timeout, $location, $window, $cookies);
392392
};
393393
}

src/ssoAuth-interceptor/ovh-angular-sso-auth-interceptor.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import angular from 'angular';
1111

12-
export default function ($q, ssoAuthentication) {
12+
export default /* @ngInject */ function ($q, ssoAuthentication) {
1313
return {
1414
/**
1515
* @ngdoc function

0 commit comments

Comments
 (0)