class PermissionsController
Public Instance Methods
create()
click to toggle source
POST /permissions POST /permissions.xml
# File lib/app/controllers/permissions_controller.rb, line 42 def create @permission = Permission.new(params[:permission]) respond_to do |format| if @permission.save format.html { redirect_to(@permission, :notice => 'Permission was successfully created.') } format.xml { render :xml => @permission, :status => :created, :location => @permission } else format.html { render :action => "new" } format.xml { render :xml => @permission.errors, :status => :unprocessable_entity } end end end
destroy()
click to toggle source
DELETE /permissions/1 DELETE /permissions/1.xml
# File lib/app/controllers/permissions_controller.rb, line 74 def destroy @permission = Permission.find(params[:id]) @permission.destroy respond_to do |format| format.html { redirect_to(permissions_url) } format.xml { head :ok } end end
edit()
click to toggle source
GET /permissions/1/edit
# File lib/app/controllers/permissions_controller.rb, line 36 def edit @permission = Permission.find(params[:id]) end
index()
click to toggle source
GET /permissions GET /permissions.xml
# File lib/app/controllers/permissions_controller.rb, line 4 def index @permissions = Permission.all respond_to do |format| format.html # index.html.erb format.xml { render :xml => @permissions } end end
new()
click to toggle source
GET /permissions/new GET /permissions/new.xml
# File lib/app/controllers/permissions_controller.rb, line 26 def new @permission = Permission.new respond_to do |format| format.html # new.html.erb format.xml { render :xml => @permission } end end
show()
click to toggle source
GET /permissions/1 GET /permissions/1.xml
# File lib/app/controllers/permissions_controller.rb, line 15 def show @permission = Permission.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @permission } end end
update()
click to toggle source
PUT /permissions/1 PUT /permissions/1.xml
# File lib/app/controllers/permissions_controller.rb, line 58 def update @permission = Permission.find(params[:id]) respond_to do |format| if @permission.update_attributes(params[:permission]) format.html { redirect_to(@permission, :notice => 'Permission was successfully updated.') } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @permission.errors, :status => :unprocessable_entity } end end end