Commit ed15da81 authored by Fatih Acet's avatar Fatih Acet

Merge branch '60948-display-groupid-on-group-admin-page' into 'master'

Display group id on group admin page

Closes #60948

See merge request gitlab-org/gitlab-ce!29735
parents 06e44f7d 0f9fb07d
......@@ -40,6 +40,11 @@
%strong
= @group.created_at.to_s(:medium)
%li
%span.light= _('ID:')
%strong
= @group.id
= render_if_exists 'admin/namespace_plan_info', namespace: @group
%li
......
---
title: Display group id on group admin page
merge_request: 29735
author: Zsolt Kovari
type: added
......@@ -5324,6 +5324,9 @@ msgstr ""
msgid "ID"
msgstr ""
msgid "ID:"
msgstr ""
msgid "IDE|Allow live previews of JavaScript projects in the Web IDE using CodeSandbox client side evaluation."
msgstr ""
......
......@@ -90,6 +90,7 @@ describe 'Admin Groups' do
visit admin_group_path(group)
expect(page).to have_content("Group: #{group.name}")
expect(page).to have_content("ID: #{group.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