Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 75c8052

Browse files
committed
remove unused dependcies.
1 parent 16aa646 commit 75c8052

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: modules/users/client/controllers/settings/change-password.client.controller.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
angular.module('users').controller('ChangePasswordController', ['$scope', '$http', '$location', 'Users', 'Authentication',
4-
function($scope, $http, $location, Users, Authentication) {
3+
angular.module('users').controller('ChangePasswordController', ['$scope', '$http', 'Authentication',
4+
function($scope, $http, Authentication) {
55
$scope.user = Authentication.user;
66

77
// Change user password

Diff for: modules/users/client/controllers/settings/manage-social-accounts.client.controller.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
angular.module('users').controller('SocialAccountsController', ['$scope', '$http', '$location', 'Users', 'Authentication',
4-
function($scope, $http, $location, Users, Authentication) {
3+
angular.module('users').controller('SocialAccountsController', ['$scope', '$http', 'Authentication',
4+
function($scope, $http, Authentication) {
55
$scope.user = Authentication.user;
66

77
// Check if there are additional accounts

Diff for: modules/users/client/controllers/settings/settings.client.controller.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
angular.module('users').controller('SettingsController', ['$scope', '$http', '$location', 'Users', 'Authentication',
4-
function($scope, $http, $location, Users, Authentication) {
3+
angular.module('users').controller('SettingsController', ['$scope', '$location', 'Authentication',
4+
function($scope, $location, Authentication) {
55
$scope.user = Authentication.user;
66

77
// If user is not signed in then redirect back home

0 commit comments

Comments
 (0)