Class: Decidim::ReportsController

Inherits:
ApplicationController show all
Includes:
FormFactory
Defined in:
app/controllers/decidim/reports_controller.rb

Overview

Exposes the report resource so users can report a reportable.

Instance Method Summary collapse

Instance Method Details

#createObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'app/controllers/decidim/reports_controller.rb', line 9

def create
  authorize! :report, reportable

  @form = form(Decidim::ReportForm).from_params(params)

  CreateReport.call(@form, reportable, current_user) do
    on(:ok) do
      flash[:notice] = I18n.t("decidim.reports.create.success")
      redirect_back fallback_location: root_path
    end

    on(:invalid) do
      flash[:alert] = I18n.t("decidim.reports.create.error")
      redirect_back fallback_location: root_path
    end
  end
end