Display project id on project admin page

This commit is contained in:
Zsolt Kovari 2019-07-22 12:50:46 +00:00 committed by Fatih Acet
parent 0b89030e60
commit d8b11c2551
3 changed files with 11 additions and 0 deletions

View File

@ -54,6 +54,11 @@
%strong
= @project.created_at.to_s(:medium)
%li
%span.light ID:
%strong
= @project.id
%li
%span.light http:
%strong

View File

@ -0,0 +1,5 @@
---
title: Display project id on project admin page
merge_request: 29734
author: Zsolt Kovari
type: added

View File

@ -60,6 +60,7 @@ describe "Admin::Projects" do
expect(page).to have_content(project.name)
expect(page).to have_content(project.full_name)
expect(page).to have_content(project.creator.name)
expect(page).to have_content(project.id)
end
end