Semaphore/public/js/controllers/projects/dashboard.js

7 lines
248 B
JavaScript
Raw Normal View History

2016-04-02 14:40:07 +02:00
define(function () {
app.registerController('ProjectDashboardCtrl', ['$scope', '$http', 'Project', function ($scope, $http, Project) {
$http.get(Project.getURL() + '/events').success(function (events) {
$scope.events = events;
});
2016-04-02 14:40:07 +02:00
}]);
});