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

51 lines
1.2 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!
layout 'resources'
def index
end
def show
end
def new
end
def edit
end
def create
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
end