Bugfixes: filters in build lists, link to project
This commit is contained in:
parent
1b0356f39f
commit
9b7be45157
|
@ -100,7 +100,15 @@ function($scope, BuildListsService, $location, $interval, $uibModal) {
|
|||
size: 'lg',
|
||||
resolve: {
|
||||
params: function() {
|
||||
return $location.search();
|
||||
var ls = $location.search();
|
||||
var res = {};
|
||||
for(var i in ls) {
|
||||
if(ls.hasOwnProperty(i)) {
|
||||
res[i] = ls[i].toString();
|
||||
}
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
json.project_link project_path(project_name_with_owner)
|
||||
json.project_link project_build_lists_path(project_name_with_owner)
|
||||
json.build_list do
|
||||
json.id item.data[:build_list_id]
|
||||
json.link build_list_path(item.data[:build_list_id])
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
td
|
||||
= link_to item[0], build_list_path(item[0])
|
||||
td
|
||||
= link_to item[1], project_path(item[1])
|
||||
= link_to item[1], project_build_lists_path(item[1])
|
||||
td
|
||||
= item[2]
|
||||
td
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
td
|
||||
= t('activerecord.attributes.product_build_list.project')
|
||||
td
|
||||
= link_to pbl.project.name_with_owner, project_path(pbl.project)
|
||||
= link_to pbl.project.name_with_owner, project_build_lists_path(pbl.project)
|
||||
|
||||
tr
|
||||
td
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
json.projects @projects do |project|
|
||||
json.visibility_class fa_visibility_icon(project)
|
||||
json.path project_path(project.name_with_owner)
|
||||
json.path project_build_lists_path(project.name_with_owner)
|
||||
json.name project.name_with_owner
|
||||
json.add_path url_for(controller: :repositories, action: :add_project, project_id: project.id)
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@ json.total_items @total_items
|
|||
json.projects @projects do |project|
|
||||
json.id project.id
|
||||
json.visibility_class fa_visibility_icon(project)
|
||||
json.path project_path(project.name_with_owner)
|
||||
json.path project_build_lists_path(project.name_with_owner)
|
||||
json.name project.name_with_owner
|
||||
if policy(@repository).remove_project?
|
||||
json.remove_path remove_project_platform_repository_path(@platform, @repository, project_id: project.id)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
json.projects @projects do |project|
|
||||
json.(project, :name)
|
||||
json.path project_path(project)
|
||||
json.path project_build_lists_path(project)
|
||||
json.public project.public?
|
||||
json.updated_at project.updated_at
|
||||
json.updated_at_utc project.updated_at.strftime('%Y-%m-%d %H:%M:%S UTC')
|
||||
|
|
Loading…
Reference in New Issue