Project

General

Profile

Download (803 Bytes) Statistics
| Branch: | Tag: | Revision:
class ArchitecturesController < ApplicationController
include Foreman::Controller::AutoCompleteSearch
include Foreman::Controller::Parameters::Architecture

before_action :find_resource, :only => [:edit, :update, :destroy]

def index
@architectures = resource_base_search_and_page.includes(:operatingsystems)
end

def new
@architecture = Architecture.new
end

def create
@architecture = Architecture.new(architecture_params)
if @architecture.save
process_success
else
process_error
end
end

def edit
end

def update
if @architecture.update(architecture_params)
process_success
else
process_error
end
end

def destroy
if @architecture.destroy
process_success
else
process_error
end
end
end
(3-3/58)