
- Convert Object properties to and array for backends and frondends for each providers. - Remove unused parameters. - Add filter.
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
'use strict';
|
|
|
|
/** @ngInject */
|
|
function VersionController($scope, Version) {
|
|
Version.get(function (version) {
|
|
$scope.version = version;
|
|
});
|
|
}
|
|
|
|
module.exports = VersionController;
|