mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
ea0245b550
- Complete more UI work - Show events on dashboard & project dashboard - Show list of tasks
7 lines
248 B
JavaScript
7 lines
248 B
JavaScript
define(function () {
|
|
app.registerController('ProjectDashboardCtrl', ['$scope', '$http', 'Project', function ($scope, $http, Project) {
|
|
$http.get(Project.getURL() + '/events').success(function (events) {
|
|
$scope.events = events;
|
|
});
|
|
}]);
|
|
}); |