Sha256: cea59536167d5ea27b0060817c25136962219f7a735e66936f56a7548085e7c9

Contents?: true

Size: 1.79 KB

Versions: 23

Compression:

Stored size: 1.79 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 Admin::Appearances::Widgets::MainController < Admin::AppearancesController
  before_action :check_permission_role

  def index
    @widgets = current_site.widgets
  end

  def new
    @widget ||= current_site.widgets.new
    render "form", layout: false
  end

  def edit
    @widget = current_site.widgets.find(params[:id])
    new
  end

  def create
    params[:widget_main][:status] = "simple"
    @widget = current_site.widgets.new(params[:widget_main])
    if @widget.save!
      flash[:notice] = t('admin.widgets.message.created')
    else
      flash[:error] = t('admin.widgets.message.error_created')
    end
    redirect_to action: :index
  end

  def update
    @widget = current_site.widgets.find(params[:id])
    if @widget.update!(params[:widget_main])
      flash[:notice] = t('admin.widgets.message.updated')
    else
      flash[:error] = t('admin.widgets.message.error_updated')
    end
    redirect_to action: :index
  end

  def destroy
    @widget = current_site.widgets.find(params[:id]).destroy!
    flash[:notice] = t('admin.widgets.message.deleted')
    redirect_to action: :index
  end

  private
  def check_permission_role
    authorize! :manager, :widgets
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
camaleon_cms-1.1.0 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.9 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.8 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.7 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.6 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.5 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.4 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.3 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.2 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0.1 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-1.0 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.2.1 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.2.0 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.9 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.8 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.7 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.6 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.5 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.4 app/controllers/admin/appearances/widgets/main_controller.rb
camaleon_cms-0.1.3 app/controllers/admin/appearances/widgets/main_controller.rb