Sha256: 546289f6643db16d760346bc64baaa332bbcf445375abca16fbe4b18984669e1
Contents?: true
Size: 1.54 KB
Versions: 22
Compression:
Stored size: 1.54 KB
Contents
module Spina module Admin class SettingsController < AdminController before_action :find_or_set_settings before_action :set_breadcrumbs admin_section :settings def edit add_breadcrumb t("spina.#{plugin.namespace}.title") end def update if @setting.update(settings_params) redirect_to spina.admin_edit_settings_path(plugin.namespace) else add_breadcrumb t("spina.#{plugin.namespace}.title") render :edit end end private def setting_class "spina/#{plugin.namespace}/setting".classify.constantize end def plugin Spina::Plugin.find_by(namespace: params[:plugin]) end helper_method :plugin def find_or_set_settings @setting = setting_class.first_or_create do |setting| plugin.settings.each do |attribute, type| setting.send("#{attribute}=", (type.is_a?(Hash) ? type.first.last : nil)) end end plugin.settings.keys.reject do |x| @setting.preferences.keys.map(&:to_sym).include? x end.each do |key| value = plugin.settings[key].is_a?(Hash) ? plugin.settings[key].first.last : nil @setting.send("#{key}=", value) end end def set_breadcrumbs add_breadcrumb t('spina.settings.title') end def settings_params params.require(:setting).permit(plugin.settings.keys) end end end end
Version data entries
22 entries across 22 versions & 1 rubygems