Sha256: f234f597e6b0219ce9e07063a3442ed87cd2654d6216ca1683964ac8b5196ba9

Contents?: true

Size: 1.59 KB

Versions: 8

Compression:

Stored size: 1.59 KB

Contents

require_dependency 'guts/application_controller'

module Guts
  # Types controller
  class TypesController < ApplicationController
    before_action :set_type, only: [:show, :edit, :update, :destroy]

    # Display a list of types
    def index
      @types = Type.all
    end

    # Show details about a single type
    def show
    end

    # Creation of a type
    def new
      @type = Type.new
    end

    # Editing of a type
    def edit
    end

    # Creates a type through post
    # @note Redirects to #index if successfull or re-renders #new if not    
    def create
      @type = Type.new type_params

      if @type.save
        flash[:notice] = 'Type was successfully created.'
        redirect_to types_path
      else
        render :new
      end
    end

    # Updates a type through patch
    # @note Redirects to #index if successfull or re-renders #edit if not
    def update
      if @type.update type_params
        flash[:notice] = 'Type was successfully updated.'
        redirect_to types_path
      else
        render :edit
      end
    end

    # Destroys a single type
    # @note Redirects to #index on success
    def destroy
      @type.destroy
      
      flash[:notice] = 'Type was successfully destroyed.'
      redirect_to types_path
    end

    private
    
    # Sets a type from the database using `id` param
    # @note This is a `before_action` callback
    # @private
    def set_type
      @type = Type.find params[:id]
    end

    # Permits type params from forms
    # @private
    def type_params
      params.require(:type).permit(:title, :slug, :site_id)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
guts-1.3.2 app/controllers/guts/types_controller.rb
guts-1.3.1 app/controllers/guts/types_controller.rb
guts-1.3.0 app/controllers/guts/types_controller.rb
guts-1.2.2 app/controllers/guts/types_controller.rb
guts-1.2.1 app/controllers/guts/types_controller.rb
guts-1.2.0 app/controllers/guts/types_controller.rb
guts-1.1.1 app/controllers/guts/types_controller.rb
guts-1.1.0 app/controllers/guts/types_controller.rb