mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
7 lines
190 B
JavaScript
7 lines
190 B
JavaScript
angular.module('app').controller('ExportController', ['$scope', 'Persist', function ($scope, Persist) {
|
|
$scope.builds = {
|
|
builds: Persist.builds
|
|
// TODO: add comparisons
|
|
};
|
|
|
|
}]); |