mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-17 12:52:22 +01:00
16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('users')
|
|
.controller('SettingsController', SettingsController);
|
|
|
|
SettingsController.$inject = ['$scope', 'Authentication'];
|
|
|
|
function SettingsController($scope, Authentication) {
|
|
var vm = this;
|
|
|
|
vm.user = Authentication.user;
|
|
}
|
|
}());
|