summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2017-12-28 22:50:10 +0000
committerRobert Speicher <robert@gitlab.com>2017-12-28 22:50:10 +0000
commit97bebab61f1589a9c434ccb8169a635d72a3bdf2 (patch)
treee4765cc1ec42018f4286bc721aee75f25f7662cd
parent0ea79ccfbae27b5734c75f02944aff4cd5a1fb43 (diff)
parent071624a0c8c0cc155b79251409498b9fc4872a1a (diff)
downloadgitlab-ce-97bebab61f1589a9c434ccb8169a635d72a3bdf2.tar.gz
Merge branch 'fix-abuse-reports-link-url' into 'master'
Fixed abuse reports link url See merge request gitlab-org/gitlab-ce!16068
-rw-r--r--app/views/layouts/nav/sidebar/_admin.html.haml2
-rw-r--r--changelogs/unreleased/fix-abuse-reports-link-url.yml5
2 files changed, 6 insertions, 1 deletions
diff --git a/app/views/layouts/nav/sidebar/_admin.html.haml b/app/views/layouts/nav/sidebar/_admin.html.haml
index cb8db306b56..dd086f70641 100644
--- a/app/views/layouts/nav/sidebar/_admin.html.haml
+++ b/app/views/layouts/nav/sidebar/_admin.html.haml
@@ -130,7 +130,7 @@
%span.badge.count= number_with_delimiter(AbuseReport.count(:all))
%ul.sidebar-sub-level-items.is-fly-out-only
= nav_link(controller: :abuse_reports, html_options: { class: "fly-out-top-item" } ) do
- = link_to admin_broadcast_messages_path do
+ = link_to admin_abuse_reports_path do
%strong.fly-out-top-item-name
#{ _('Abuse Reports') }
%span.badge.count.merge_counter.js-merge-counter.fly-out-badge= number_with_delimiter(AbuseReport.count(:all))
diff --git a/changelogs/unreleased/fix-abuse-reports-link-url.yml b/changelogs/unreleased/fix-abuse-reports-link-url.yml
new file mode 100644
index 00000000000..44c26f35984
--- /dev/null
+++ b/changelogs/unreleased/fix-abuse-reports-link-url.yml
@@ -0,0 +1,5 @@
+---
+title: Fix abuse reports link url in admin area navbar
+merge_request: 16068
+author: megos
+type: fixed