11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
|
function RepoListCtrl($scope, Restangular) {
|
||
|
var repositoryFetch = Restangular.all('repository/');
|
||
|
repositoryFetch.getList().then(function(resp) {
|
||
|
$scope.repositories = resp.repositories;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function LandingCtrl($scope) {
|
||
|
|
||
|
}
|