Commit 0f9fb07d authored by Zsolt Kovari's avatar Zsolt Kovari Committed by Fatih Acet

Display group id on group admin page

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