mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 08:10:50 +01:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
|
define(function () {
|
||
|
app.registerController('DashboardCtrl', function ($scope, $http) {
|
||
|
$scope.projects = [{
|
||
|
name: 'Hey there'
|
||
|
}, {
|
||
|
name: 'Test project'
|
||
|
}];
|
||
|
})
|
||
|
})
|