debian-mirror-gitlab/app/controllers/admin/abuse_reports_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
576 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
class Admin::AbuseReportsController < Admin::ApplicationController
2023-03-04 22:38:38 +05:30
feature_category :insider_threat
2021-01-03 14:25:43 +05:30
2023-05-27 22:25:52 +05:30
before_action :set_status_param, only: :index, if: -> { Feature.enabled?(:abuse_reports_list) }
2015-09-11 14:41:01 +05:30
def index
2019-12-26 22:10:19 +05:30
@abuse_reports = AbuseReportsFinder.new(params).execute
2015-09-11 14:41:01 +05:30
end
def destroy
abuse_report = AbuseReport.find(params[:id])
2016-06-02 11:05:42 +05:30
abuse_report.remove_user(deleted_by: current_user) if params[:remove_user]
2015-09-11 14:41:01 +05:30
abuse_report.destroy
2016-06-02 11:05:42 +05:30
head :ok
2015-09-11 14:41:01 +05:30
end
2023-05-27 22:25:52 +05:30
private
def set_status_param
params[:status] ||= 'open'
end
2015-09-11 14:41:01 +05:30
end