Sha256: e27266360c5f6abdd158ffa4519e4c581ba567c717674f8622ba8697d5eec3c7
Contents?: true
Size: 1.78 KB
Versions: 2
Compression:
Stored size: 1.78 KB
Contents
=begin Camaleon CMS is a content management system Copyright (C) 2015 by Owen Peredo Diaz Email: owenperedo@gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License (GPLv3) for more details. =end class CamaleonCms::Admin::Appearances::Widgets::AssignController < CamaleonCms::AdminController before_action :check_permission_role before_action :find_sidebar before_action :find_assigned_sidebar, only: [:update, :destroy] def new @widget = current_site.widgets.find(params[:widget_id]) @assigned = @sidebar.assigned.create!({title: "Default", widget_id: @widget.id}) render partial: "form", locals: {assigned: @assigned, widget: @widget, sidebar: @sidebar}, layout: "camaleon_cms/admin/ajax" end def update if @assigned.update(params[:assign]) @assigned.set_field_values(params[:field_options]) flash[:notice] = t('camaleon_cms.admin.widgets.assign.updated') else flash[:error] = t('camaleon_cms.admin.widgets.assign.error_updated') end redirect_to cama_admin_appearances_widgets_main_index_path end def destroy @assigned.destroy render inline: '' end private def find_sidebar @sidebar = current_site.sidebars.find(params[:sidebar_id]) end def find_assigned_sidebar @assigned = @sidebar.assigned.find(params[:id]) end def check_permission_role authorize! :manage, :widgets end end
Version data entries
2 entries across 2 versions & 1 rubygems