1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/assets/javascripts/controllers/dashboard.coffee

8 lines
188 B
CoffeeScript
Raw Normal View History

2015-05-05 03:10:25 +02:00
'use strict'
2016-03-23 18:39:41 +01:00
Application.Controllers.controller "DashboardController", ["$scope", 'memberPromise', ($scope, memberPromise) ->
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
## Current user's profile
$scope.user = memberPromise
2015-05-05 03:10:25 +02:00
]