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

Commit

Permalink
remove unused dependcies.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhutchison committed Jul 9, 2015
1 parent 16aa646 commit 75c8052
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

angular.module('users').controller('ChangePasswordController', ['$scope', '$http', '$location', 'Users', 'Authentication',
function($scope, $http, $location, Users, Authentication) {
angular.module('users').controller('ChangePasswordController', ['$scope', '$http', 'Authentication',
function($scope, $http, Authentication) {
$scope.user = Authentication.user;

// Change user password
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

angular.module('users').controller('SocialAccountsController', ['$scope', '$http', '$location', 'Users', 'Authentication',
function($scope, $http, $location, Users, Authentication) {
angular.module('users').controller('SocialAccountsController', ['$scope', '$http', 'Authentication',
function($scope, $http, Authentication) {
$scope.user = Authentication.user;

// Check if there are additional accounts
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

angular.module('users').controller('SettingsController', ['$scope', '$http', '$location', 'Users', 'Authentication',
function($scope, $http, $location, Users, Authentication) {
angular.module('users').controller('SettingsController', ['$scope', '$location', 'Authentication',
function($scope, $location, Authentication) {
$scope.user = Authentication.user;

// If user is not signed in then redirect back home
Expand Down

0 comments on commit 75c8052

Please sign in to comment.