Sha256: b0f45484a68764c15ec2bbf977bf9c493cac86a03f99749970739833d3f97f44

Contents?: true

Size: 475 Bytes

Versions: 1

Compression:

Stored size: 475 Bytes

Contents

module MegaBar
  class TmpFieldsController < ApplicationController
    include MegaBarConcern
    before_action ->{ myinit 11 },  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/tmp_fields_controller.rb