woodpecker/server/app/scripts/controllers/home.js

17 lines
421 B
JavaScript
Raw Normal View History

'use strict';
angular.module('app').controller("HomeController", function($scope, $http, feed, notify) {
feed.subscribe(function(message) {
notify.send(message.repo.name);
});
$http({method: 'GET', url: '/v1/user/feed'}).
success(function(data, status, headers, config) {
$scope.feed = (typeof data==='string')?[]:data;
}).
error(function(data, status, headers, config) {
console.log(data);
});
});