Display project id on project admin page
This commit is contained in:
parent
0b89030e60
commit
d8b11c2551
3 changed files with 11 additions and 0 deletions
|
@ -54,6 +54,11 @@
|
|||
%strong
|
||||
= @project.created_at.to_s(:medium)
|
||||
|
||||
%li
|
||||
%span.light ID:
|
||||
%strong
|
||||
= @project.id
|
||||
|
||||
%li
|
||||
%span.light http:
|
||||
%strong
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Display project id on project admin page
|
||||
merge_request: 29734
|
||||
author: Zsolt Kovari
|
||||
type: added
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue