mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-16 04:12:19 +01:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
'use strict';
|
|
|
|
angular.module('users').controller('SettingsController', ['$scope', 'Authentication',
|
|
function ($scope, Authentication) {
|
|
$scope.user = Authentication.user;
|
|
}
|
|
]);
|