mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-15 11:52:23 +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;
|
|
}
|
|
}());
|