bisscomm/refinerycms-image-slideshows

View on GitHub
app/controllers/refinery/image_slideshows/admin/image_slideshows_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Refinery
  module ImageSlideshows
    module Admin
      class ImageSlideshowsController < ::Refinery::AdminController

        crudify :'refinery/image_slideshows/image_slideshow'

        private

          def image_slideshow_params
            params.require(:image_slideshow).permit(
              :title,
              :position,
              :js_config,
              :height,
              :width
            )
          end
      end
    end
  end
end