Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
3dc13281
Commit
3dc13281
authored
Aug 06, 2015
by
Dmitriy Zaporozhets
Committed by
Valery Sizov
Aug 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add abuse report management in admin area
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
0a9c65c9
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
0 deletions
+58
-0
app/controllers/admin/abuse_reports_controller.rb
app/controllers/admin/abuse_reports_controller.rb
+11
-0
app/views/admin/abuse_reports/_abuse_report.html.haml
app/views/admin/abuse_reports/_abuse_report.html.haml
+23
-0
app/views/admin/abuse_reports/index.html.haml
app/views/admin/abuse_reports/index.html.haml
+16
-0
app/views/layouts/nav/_admin.html.haml
app/views/layouts/nav/_admin.html.haml
+7
-0
config/routes.rb
config/routes.rb
+1
-0
No files found.
app/controllers/admin/abuse_reports_controller.rb
0 → 100644
View file @
3dc13281
class
Admin::AbuseReportsController
<
Admin
::
ApplicationController
def
index
@abuse_reports
=
AbuseReport
.
order
(
id: :desc
).
page
(
params
[
:page
])
end
def
destroy
AbuseReport
.
find
(
params
[
:id
]).
destroy
redirect_to
admin_abuse_reports_path
,
notice:
'Report was removed'
end
end
app/views/admin/abuse_reports/_abuse_report.html.haml
0 → 100644
View file @
3dc13281
-
reporter
=
abuse_report
.
reporter
-
user
=
abuse_report
.
user
%tr
%td
-
if
reporter
=
link_to
reporter
.
name
,
[
:admin
,
reporter
]
-
else
(removed)
%td
=
abuse_report
.
created_at
.
to_s
(
:short
)
%td
=
abuse_report
.
message
%td
-
if
user
=
link_to
user
.
name
,
[
:admin
,
user
]
-
else
(removed)
%td
-
if
user
=
link_to
'Block'
,
block_admin_user_path
(
user
),
data:
{
confirm:
'USER WILL BE BLOCKED! Are you sure?'
},
method: :put
,
class:
"btn btn-xs btn-warning"
=
link_to
'Remove user'
,
[
:admin
,
user
],
data:
{
confirm:
"USER
#{
user
.
name
}
WILL BE REMOVED! Are you sure?"
},
method: :delete
,
class:
"btn btn-xs btn-remove"
%td
=
link_to
'Remove report'
,
[
:admin
,
abuse_report
],
method: :delete
,
class:
"btn btn-xs btn-close"
app/views/admin/abuse_reports/index.html.haml
0 → 100644
View file @
3dc13281
-
page_title
"Abuse Reports"
%h3
.page-title
Abuse Reports
%hr
-
if
@abuse_reports
.
present?
%table
.table
%thead
%tr
%th
Reported by
%th
Reported at
%th
Message
%th
User
%th
%th
=
render
@abuse_reports
-
else
%h4
There are no abuse reports
app/views/layouts/nav/_admin.html.haml
View file @
3dc13281
...
...
@@ -57,6 +57,13 @@
%span
Service Templates
=
nav_link
(
controller: :abuse_reports
)
do
=
link_to
admin_abuse_reports_path
,
title:
"Abuse reports"
do
=
icon
(
'exclamation-circle fw'
)
%span
Abuse Reports
%span
.count
=
AbuseReport
.
count
(
:all
)
=
nav_link
(
controller: :application_settings
,
html_options:
{
class:
'separate-item'
})
do
=
link_to
admin_application_settings_path
,
title:
'Settings'
,
data:
{
placement:
'right'
}
do
=
icon
(
'cogs fw'
)
...
...
config/routes.rb
View file @
3dc13281
...
...
@@ -167,6 +167,7 @@ Gitlab::Application.routes.draw do
end
end
resources
:abuse_reports
,
only:
[
:index
,
:destroy
]
resources
:applications
resources
:groups
,
constraints:
{
id:
/[^\/]+/
}
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment