mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
10 lines
207 B
CoffeeScript
10 lines
207 B
CoffeeScript
'use strict'
|
|
|
|
Application.Controllers.controller "WalletController", ['$scope', 'walletPromise', ($scope, walletPromise)->
|
|
|
|
### PUBLIC SCOPE ###
|
|
|
|
## current user wallet
|
|
$scope.wallet = walletPromise
|
|
]
|