taiga-front/app/modules/profile/profile.controller.coffee

13 lines
312 B
CoffeeScript

class ProfilePageController extends taiga.Controller
@.$inject = [
"$appTitle",
"$tgAuth"
]
constructor: (@appTitle, @auth) ->
@.user = @auth.userData
@appTitle.set(@.user.get('username'))
angular.module("taigaProfile").controller("Profile", ProfilePageController)