Class: PermissionsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- PermissionsController
- Defined in:
- lib/app/controllers/permissions_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /permissions POST /permissions.xml.
-
#destroy ⇒ Object
DELETE /permissions/1 DELETE /permissions/1.xml.
-
#edit ⇒ Object
GET /permissions/1/edit.
-
#index ⇒ Object
GET /permissions GET /permissions.xml.
-
#new ⇒ Object
GET /permissions/new GET /permissions/new.xml.
-
#show ⇒ Object
GET /permissions/1 GET /permissions/1.xml.
-
#update ⇒ Object
PUT /permissions/1 PUT /permissions/1.xml.
Instance Method Details
#create ⇒ Object
POST /permissions POST /permissions.xml
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# 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 ⇒ Object
DELETE /permissions/1 DELETE /permissions/1.xml
74 75 76 77 78 79 80 81 82 |
# 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() } format.xml { head :ok } end end |
#edit ⇒ Object
GET /permissions/1/edit
36 37 38 |
# File 'lib/app/controllers/permissions_controller.rb', line 36 def edit @permission = Permission.find(params[:id]) end |
#index ⇒ Object
GET /permissions GET /permissions.xml
4 5 6 7 8 9 10 11 |
# 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 ⇒ Object
GET /permissions/new GET /permissions/new.xml
26 27 28 29 30 31 32 33 |
# 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 ⇒ Object
GET /permissions/1 GET /permissions/1.xml
15 16 17 18 19 20 21 22 |
# 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 ⇒ Object
PUT /permissions/1 PUT /permissions/1.xml
58 59 60 61 62 63 64 65 66 67 68 69 70 |
# 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 |