1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-16 03:06:22 +00:00

Users viewing

This commit is contained in:
jendib
2013-08-08 20:17:16 +02:00
parent f328aedccd
commit 990884137b
7 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
'use strict';
/**
* Settings user edition page controller.
*/
App.controller('SettingsUserEdit', function($scope, $stateParams, Restangular) {
$scope.user = Restangular.one('user', $stateParams.username).get();
});