Sha256: b6b00dff1b65ee37bc692d965f162c14f65c20306e69a40b36634e9bb0345ca8

Contents?: true

Size: 1.93 KB

Versions: 8

Compression:

Stored size: 1.93 KB

Contents

class ExoplanetsController < ApplicationController
  before_action :set_exoplanet, only: [:show, :edit, :update, :destroy]

  # GET /exoplanets
  # GET /exoplanets.json
  def index
    @exoplanets = Exoplanet.all
  end

  # GET /exoplanets/1
  # GET /exoplanets/1.json
  def show
  end

  # GET /exoplanets/new
  def new
    @exoplanet = Exoplanet.new
  end

  # GET /exoplanets/1/edit
  def edit
  end

  # POST /exoplanets
  # POST /exoplanets.json
  def create
    @exoplanet = Exoplanet.new(exoplanet_params)

    respond_to do |format|
      if @exoplanet.save
        format.html { redirect_to @exoplanet, notice: 'Exoplanet was successfully created.' }
        format.json { render :show, status: :created, location: @exoplanet }
      else
        format.html { render :new }
        format.json { render json: @exoplanet.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /exoplanets/1
  # PATCH/PUT /exoplanets/1.json
  def update
    respond_to do |format|
      if @exoplanet.update(exoplanet_params)
        format.html { redirect_to @exoplanet, notice: 'Exoplanet was successfully updated.' }
        format.json { render :show, status: :ok, location: @exoplanet }
      else
        format.html { render :edit }
        format.json { render json: @exoplanet.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /exoplanets/1
  # DELETE /exoplanets/1.json
  def destroy
    @exoplanet.destroy
    respond_to do |format|
      format.html { redirect_to exoplanets_url, notice: 'Exoplanet was successfully destroyed.' }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_exoplanet
      @exoplanet = Exoplanet.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def exoplanet_params
      params.require(:exoplanet).permit(:name)
    end
end

Version data entries

8 entries across 4 versions & 1 rubygems

Version Path
tabulous-2.1.4 spec/applications/subtabs/rails_5-0-0/app/controllers/exoplanets_controller.rb
tabulous-2.1.4 spec/applications/subtabs/rails_4-1-1/app/controllers/exoplanets_controller.rb
tabulous-2.1.4 spec/applications/subtabs/rails_4-2-0/app/controllers/exoplanets_controller.rb
tabulous-2.1.3 spec/applications/subtabs/rails_4-2-0/app/controllers/exoplanets_controller.rb
tabulous-2.1.3 spec/applications/subtabs/rails_4-1-1/app/controllers/exoplanets_controller.rb
tabulous-2.1.2 spec/applications/subtabs/rails_4-2-0/app/controllers/exoplanets_controller.rb
tabulous-2.1.2 spec/applications/subtabs/rails_4-1-1/app/controllers/exoplanets_controller.rb
tabulous-2.1.1 spec/applications/subtabs/rails_4-1-1/app/controllers/exoplanets_controller.rb