Open-Source-Access-Control-.../app/controllers/contracts_controller.rb

57 lines
1.4 KiB
Ruby
Raw Normal View History

2014-02-27 11:13:53 +00:00
class ContractsController < ApplicationController
load_and_authorize_resource :contract
before_filter :authenticate_user!, :load_users
2014-02-27 11:13:53 +00:00
layout 'resources'
def index
end
def show
end
def new
end
def edit
end
def create
Rails.logger.info "CONTRACT"
Rails.logger.info @contract.inspect
2014-02-27 11:13:53 +00:00
respond_to do |format|
if @contract.save
2014-03-03 04:48:49 +00:00
format.html { redirect_to @contract, :notice => 'Contract was successfully created.' }
2014-02-27 11:13:53 +00:00
format.json { render :json => @contract, :status => :created, :location => @contract }
else
format.html { render :action => "new" }
format.json { render :json => @contract.errors, :status => :unprocessable_entity }
end
end
end
def update
respond_to do |format|
if @contract.update_attributes(params[:contract])
2014-03-03 04:48:49 +00:00
format.html { redirect_to @contract, :notice => 'Contract was successfully updated.' }
2014-02-27 11:13:53 +00:00
format.json { head :no_content }
else
format.html { render :action => "edit" }
format.json { render :json => @contract.errors, :status => :unprocessable_entity }
end
end
end
def destroy
@contract.destroy
respond_to do |format|
format.html { redirect_to contracts_url }
format.json { head :no_content }
end
end
def load_users
@users = @users = User.accessible_by(current_ability).sort_by(&:name)
end
2014-02-27 11:13:53 +00:00
end