Project

General

Profile

Download (829 Bytes) Statistics
| Branch: | Tag: | Revision:
class PtablesController < ApplicationController
include Foreman::Controller::AutoCompleteSearch
before_filter :find_ptable, :only => %w{edit update destroy}

def index
@ptables = Ptable.includes(:operatingsystems).search_for(params[:search], :order => params[:order]).paginate(:page => params[:page])
end

def new
@ptable = Ptable.new
end

def create
@ptable = Ptable.new(params[:ptable])
if @ptable.save
process_success
else
process_error
end
end

def edit
end

def update
if @ptable.update_attributes(params[:ptable])
process_success
else
process_error
end
end

def destroy
if @ptable.destroy
process_success
else
process_error
end
end

private
def find_ptable
@ptable = Ptable.find(params[:id])
end

end
(31-31/45)