entity-browser-frontend/app/controller/form-view/entity-view.js (11 lines of code) (raw):
angular.module('xodus').controller('EntityController', [
'$scope',
'$routeParams',
function ($scope, $routeParams) {
$scope.typeId = $routeParams.typeId;
$scope.entityId = $routeParams.entityId;
if (!angular.isDefined($scope.entityId)) {
$scope.entityId = null;
}
}]
);