mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-06-06 21:46:26 +02:00
15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
|
'use strict';
|
||
|
|
||
|
angular.module('app').controller("HomeController", function($scope, $http, user) {
|
||
|
|
||
|
$scope.user = user;
|
||
|
|
||
|
$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);
|
||
|
});
|
||
|
});
|