Skip to content

Commit 4c34b2f

Browse files
committed
Fixed unmet dependencies of legacy code.
1 parent 1ed09f4 commit 4c34b2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/controllers/UserController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
angular.module('UserController', []).controller('UserController', ['$scope', '$rootScope', 'User', 'Auth', '$localStorage', '$location',
2-
function ($scope, $rootScope, User, Auth, $localStorage, $location) {
1+
angular.module('UserController', []).controller('UserController', ['$scope', 'User', '$localStorage', '$location',
2+
function ($scope, User, $localStorage, $location) {
33
$scope.login = function () {
44
var user = new User({
55
username: this.username,

0 commit comments

Comments
 (0)