Fix URLs of the generated build status badges
This commit is contained in:
parent
997a093b08
commit
8327d9fdbf
1 changed files with 2 additions and 2 deletions
|
@ -1198,12 +1198,12 @@ function RepoAdminCtrl($scope, Restangular, ApiService, KeyService, $routeParams
|
||||||
$scope.getBadgeFormat = function(format, repo) {
|
$scope.getBadgeFormat = function(format, repo) {
|
||||||
if (!repo) { return; }
|
if (!repo) { return; }
|
||||||
|
|
||||||
var imageUrl = Config.getUrl('/' + namespace + '/' + name + '/status');
|
var imageUrl = Config.getUrl('/repository/' + namespace + '/' + name + '/status');
|
||||||
if (!$scope.repo.is_public) {
|
if (!$scope.repo.is_public) {
|
||||||
imageUrl += '?token=' + $scope.repo.status_token;
|
imageUrl += '?token=' + $scope.repo.status_token;
|
||||||
}
|
}
|
||||||
|
|
||||||
var linkUrl = Config.getUrl('/' + namespace + '/' + name);
|
var linkUrl = Config.getUrl('/repository/' + namespace + '/' + name);
|
||||||
|
|
||||||
switch (format) {
|
switch (format) {
|
||||||
case 'svg':
|
case 'svg':
|
||||||
|
|
Reference in a new issue