Project

General

Profile

Download (787 Bytes) Statistics
| Branch: | Tag: | Revision:
class LookupKeysController < ApplicationController
include Foreman::Controller::AutoCompleteSearch
before_filter :find_by_key, :except => :index
before_filter :setup_search_options, :only => :index

def index
@lookup_keys = LookupKey.search_for(params[:search], :order => params[:order]).includes(:puppetclass).paginate(:page => params[:page])
end

def edit
end

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

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

private
def find_by_key
if params[:id]
@lookup_key = LookupKey.find(params[:id])
not_found and return if @lookup_key.blank?
end
end
end
(24-24/45)