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

25 lines
642 B
JavaScript
Raw Normal View History

'use strict';
angular.module('app').controller("HomeController", function($scope, $http, feed) {
feed.subscribe(function(item) {
// todo toast notification
});
$http({method: 'GET', url: '/v1/user/feed'}).
success(function(data, status, headers, config) {
2014-07-10 05:24:06 +00:00
$scope.feed = (typeof data==='string')?[]:data;
2014-07-09 07:46:15 +00:00
}).
error(function(data, status, headers, config) {
console.log(data);
});
$http({method: 'GET', url: '/v1/user/repos'}).
success(function(data, status, headers, config) {
$scope.repos = (typeof data==='string')?[]:data;
}).
error(function(data, status, headers, config) {
console.log(data);
});
});