Sha256: a00f5df7c98d0609e78d5469dacadc55c7977c1ddfabaf89882aae243950485f
Contents?: true
Size: 477 Bytes
Versions: 1
Compression:
Stored size: 477 Bytes
Contents
module MegaBar class RadioButtonsController < ApplicationController include MegaBarConcern before_action ->{ myinit 9 }, only: [:index, :show, :edit, :new] private def _params permits = [] controller_name.classify.constantize.attribute_names.each do |att| permits << att unless ['id', 'created_at', 'updated_at'].include?(att) end params.require(controller_name.singularize).permit(permits) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mega_bar-0.0.1 | app/controllers/mega_bar/radio_buttons_controller.rb |