From a37bfbdc88bed5599a9f05325d24a6aa580fe00c Mon Sep 17 00:00:00 2001 From: Juanfran Date: Tue, 9 Jun 2015 11:13:17 +0200 Subject: [PATCH] rename ProfilePageController class to ProfileController --- app/modules/profile/profile.controller.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/modules/profile/profile.controller.coffee b/app/modules/profile/profile.controller.coffee index 0d3932c7..cca54f1c 100644 --- a/app/modules/profile/profile.controller.coffee +++ b/app/modules/profile/profile.controller.coffee @@ -1,4 +1,4 @@ -class ProfilePageController +class ProfileController @.$inject = [ "$appTitle", "tgCurrentUserService", @@ -25,4 +25,4 @@ class ProfilePageController @.isCurrentUser = true @appTitle.set(@.user.get('full_name_display')) -angular.module("taigaProfile").controller("Profile", ProfilePageController) +angular.module("taigaProfile").controller("Profile", ProfileController)