2014-06-21 21:22:38 +00:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-22 09:04:07 +00:00
|
|
|
angular.module('app').controller("HomeController", function($scope, $http, feed, notify) {
|
2014-06-21 21:22:38 +00:00
|
|
|
|
2014-06-22 09:04:07 +00:00
|
|
|
feed.subscribe(function(message) {
|
|
|
|
notify.send(message.repo.name);
|
2014-06-22 00:41:40 +00:00
|
|
|
});
|
|
|
|
|
2014-06-21 21:22:38 +00:00
|
|
|
$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);
|
|
|
|
});
|
|
|
|
});
|