AyuntamientoMadrid/participacion

View on GitHub
app/controllers/admin/debates_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Admin::DebatesController < Admin::BaseController
  include FeatureFlags
  include CommentableActions
  include HasOrders

  feature_flag :debates

  has_orders %w[created_at]

  def show
    @debate = Debate.find(params[:id])
  end

  private

    def resource_model
      Debate
    end
end