Commit 06e44f7d authored by Fatih Acet's avatar Fatih Acet

Merge branch '60949-display-projectid-on-project-admin-page' into 'master'

Display project id on project admin page

Closes #60949

See merge request gitlab-org/gitlab-ce!29734
parents 0b89030e d8b11c25
......@@ -54,6 +54,11 @@
%strong
= @project.created_at.to_s(:medium)
%li
%span.light ID:
%strong
= @project.id
%li
%span.light http:
%strong
......
---
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment