added link to the reported object
This commit is contained in:
parent
6864faee03
commit
7bfa5132dd
|
@ -1,2 +1,18 @@
|
|||
module ModerationHelper
|
||||
# @param report [Report]
|
||||
def content_url(report)
|
||||
target = report.target
|
||||
case report.type
|
||||
when 'Reports::Answer'
|
||||
show_user_answer_path target.user.screen_name, target.id
|
||||
when 'Reports::Comment'
|
||||
show_user_answer_path target.answer.user.screen_name, target.answer.id
|
||||
when 'Reports::Question'
|
||||
show_user_question_path 'user', target.id
|
||||
when 'Reports::User'
|
||||
show_user_profile_path target.screen_name
|
||||
else
|
||||
'#'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
= report.target.content
|
||||
.row
|
||||
.col-md-6.col-sm-4.col-xs-6.text-left
|
||||
%button.btn.btn-primary
|
||||
%a.btn.btn-primary{href: content_url(report)}
|
||||
View reported
|
||||
contenttype
|
||||
= report.type.sub('Reports::', '')
|
||||
.col-md-6.col-sm-8.col-xs-6.text-right
|
||||
%button.btn.btn-success.btn-sm
|
||||
%i.fa.fa-thumbs-up
|
||||
|
|
Loading…
Reference in New Issue