Fix fetch commits in repo page

This commit is contained in:
Kirill Zaitsev 2014-10-02 18:11:13 +04:00
parent 65b3129797
commit d1f8486862
2 changed files with 4 additions and 4 deletions

View file

@ -23,8 +23,8 @@ angular.module('app').controller("RepoController", function($scope, $http, $rout
// load the repo commit feed
repos.feed(repo.host, repo.owner, repo.name).success(function (feed) {
$scope.commits = (typeof feed==='string')?[]:feed;
repos.commits(repo.host, repo.owner, repo.name).success(function (commits) {
$scope.commits = (typeof commits==='string')?[]:commits;
$scope.state = 1;
})
.error(function (error) {

View file

@ -20,8 +20,8 @@ angular.module('app').service('repos', ['$q', '$http', function($q, $http) {
};
// Gets a repository by host, owner and name.
this.feed = function(host, owner, name) {
return $http.get('/api/repos/'+host+'/'+owner+'/'+name+'/feed');
this.commits = function(host, owner, name) {
return $http.get('/api/repos/'+host+'/'+owner+'/'+name+'/commits');
};
// Updates an existing repository