57 lines
1.4 KiB
Ruby
57 lines
1.4 KiB
Ruby
class ContractsController < ApplicationController
|
|
load_and_authorize_resource :contract
|
|
before_filter :authenticate_user!, :load_users
|
|
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
|
|
respond_to do |format|
|
|
if @contract.save
|
|
format.html { redirect_to @contract, :notice => 'Contract was successfully created.' }
|
|
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])
|
|
format.html { redirect_to @contract, :notice => 'Contract was successfully updated.' }
|
|
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
|
|
end
|