Sha256: 3bc7b79691047375d3070931023c024a89fa4134127b66634dc0c97dd9937aa4

Contents?: true

Size: 1.85 KB

Versions: 10

Compression:

Stored size: 1.85 KB

Contents

class AdminsController < ApplicationController
  # GET /admins
  # GET /admins.json
  def index
    @admins = Admin.all

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @admins }
    end
  end

  # GET /admins/1
  # GET /admins/1.json
  def show
    @admin = Admin.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @admin }
    end
  end

  # GET /admins/new
  # GET /admins/new.json
  def new
    @admin = Admin.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @admin }
    end
  end

  # GET /admins/1/edit
  def edit
    @admin = Admin.find(params[:id])
  end

  # POST /admins
  # POST /admins.json
  def create
    @admin = Admin.new(params[:admin])

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

  # PUT /admins/1
  # PUT /admins/1.json
  def update
    @admin = Admin.find(params[:id])

    respond_to do |format|
      if @admin.update_attributes(params[:admin])
        format.html { redirect_to @admin, notice: 'Admin was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @admin.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /admins/1
  # DELETE /admins/1.json
  def destroy
    @admin = Admin.find(params[:id])
    @admin.destroy

    respond_to do |format|
      format.html { redirect_to admins_url }
      format.json { head :no_content }
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
devise-multi-radius-authenticatable-0.3.0 spec/rails_app/app/controllers/admins_controller.rb
devise-multi-radius-authenticatable-0.2.0 spec/rails_app/app/controllers/admins_controller.rb
devise-multi-radius-authenticatable-0.1.2 spec/rails_app/app/controllers/admins_controller.rb
devise-multi-radius-authenticatable-0.1.1 spec/rails_app/app/controllers/admins_controller.rb
devise-radius-authenticatable-0.0.6 spec/rails_app/app/controllers/admins_controller.rb
devise-radius-authenticatable-0.0.5 spec/rails_app/app/controllers/admins_controller.rb
devise-radius-authenticatable-0.0.4 spec/rails_app/app/controllers/admins_controller.rb
devise-radius-authenticatable-0.0.3 spec/rails_app/app/controllers/admins_controller.rb
devise-radius-authenticatable-0.0.2 spec/rails_app/app/controllers/admins_controller.rb
devise-radius-authenticatable-0.0.1 spec/rails_app/app/controllers/admins_controller.rb