Sha256: bc2f4886f8a4c8b5d2a1f2110339d376faa492be53cc38868980693d896064ed

Contents?: true

Size: 1.76 KB

Versions: 195

Compression:

Stored size: 1.76 KB

Contents

class UsersController < ApplicationController
  
  filter_parameter_logging :ssn
  
  # GET /users
  # GET /users.xml
  def index
    @users = User.find(:all)

    respond_to do |format|
      format.html # index.rhtml
      format.xml  { render :xml => @users.to_xml }
    end
  end

  # GET /users/1
  # GET /users/1.xml
  def show
    @user = User.find(params[:id])

    respond_to do |format|
      format.html # show.rhtml
      format.xml  { render :xml => @user.to_xml }
    end
  end

  # GET /users/new
  def new
    @user = User.new
  end

  # GET /users/1;edit
  def edit
    @user = User.find(params[:id])
  end

  # POST /users
  # POST /users.xml
  def create
    @user = User.new(params[:user])

    respond_to do |format|
      if @user.save
        flash[:notice] = 'User was successfully created.'
        format.html { redirect_to user_url(@user) }
        format.xml  { head :created, :location => user_url(@user) }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @user.errors.to_xml }
      end
    end
  end

  # PUT /users/1
  # PUT /users/1.xml
  def update
    @user = User.find(params[:id])

    respond_to do |format|
      if @user.update_attributes(params[:user])
        flash[:notice] = 'User was successfully updated.'
        format.html { redirect_to user_url(@user) }
        format.xml  { head :ok }
      else
        format.html { render :action => "edit" }
        format.xml  { render :xml => @user.errors.to_xml }
      end
    end
  end

  # DELETE /users/1
  # DELETE /users/1.xml
  def destroy
    @user = User.find(params[:id])
    @user.destroy

    flash[:notice] = "User was removed"

    respond_to do |format|
      format.html { redirect_to users_url }
      format.xml  { head :ok }
    end
  end
end

Version data entries

195 entries across 165 versions & 30 rubygems

Version Path
thoughtbot-clearance-0.2.5 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.2.6 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.2.7 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.2.8 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.2.9 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.3.0 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.3.1 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.3.2 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.3.3 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-clearance-0.3.4 test/rails_root/vendor/gems/thoughtbot-shoulda-2.0.4/test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.2 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.3 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.4 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.5 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.6 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.10.0 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.10.1 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.10.2 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.9.0 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.9.1 test/rails_root/app/controllers/users_controller.rb