提交 0e60282e 编写于 作者: R Robert Speicher

Redirect back to user profile page after abuse report

Now the reporter will see the fruits of their labor, namely, the red
icon!
上级 6f4ea679
......@@ -14,7 +14,7 @@ class AbuseReportsController < ApplicationController
end
message = "Thank you for your report. A GitLab administrator will look into it shortly."
redirect_to root_path, notice: message
redirect_to @abuse_report.user, notice: message
else
render :new
end
......@@ -23,6 +23,9 @@ class AbuseReportsController < ApplicationController
private
def report_params
params.require(:abuse_report).permit(:user_id, :message)
params.require(:abuse_report).permit(%i(
message
user_id
))
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册