From 2e1c440f2ed9032ce169175ea4e181f3e00c5957 Mon Sep 17 00:00:00 2001 From: Luiz-FS Date: Tue, 9 Oct 2018 09:08:59 -0300 Subject: [PATCH] inject MessageService in SignupController --- frontend/auth/signupDirective.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/auth/signupDirective.js b/frontend/auth/signupDirective.js index 233750892..7dd2b5456 100644 --- a/frontend/auth/signupDirective.js +++ b/frontend/auth/signupDirective.js @@ -3,7 +3,7 @@ var app = angular.module('app'); - app.controller('SignupController', function(AuthService, $scope) { + app.controller('SignupController', function(AuthService, $scope, MessageService) { var controller = this; controller.newUser = {};