mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
0f180756ab
- Restructuring & co
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
define(function () {
|
|
app.registerController('IdentityCtrl', ['$scope', '$state', function($scope, $state) {
|
|
$scope.delete = function () {
|
|
$scope.identity.delete();
|
|
|
|
$state.transitionTo('credentials.list');
|
|
}
|
|
}]);
|
|
}); |