Class: Api::V2::ForemanDatacenter::ConsoleServerPortTemplatesController

Inherits:
BaseController
  • Object
show all
Includes:
ForemanDatacenter::Controller::Parameters::ConsoleServerPortTemplate
Defined in:
app/controllers/api/v2/foreman_datacenter/console_server_port_templates_controller.rb

Instance Method Summary collapse

Methods inherited from BaseController

#action_permission, #controller_permission, #find_resource, #resource_class, #resource_class_for, #resource_finder, #resource_name, #resource_scope, #scope_for

Instance Method Details

#createObject



34
35
36
37
# File 'app/controllers/api/v2/foreman_datacenter/console_server_port_templates_controller.rb', line 34

def create
  @console_server_port_template = ::ForemanDatacenter::ConsoleServerPortTemplate.new(console_server_port_template_params)
  process_response @console_server_port_template.save
end

#destroyObject



42
43
44
# File 'app/controllers/api/v2/foreman_datacenter/console_server_port_templates_controller.rb', line 42

def destroy
  process_response @console_server_port_template.destroy
end

#indexObject



14
15
16
# File 'app/controllers/api/v2/foreman_datacenter/console_server_port_templates_controller.rb', line 14

def index
  @console_server_port_templates = resource_scope_for_index
end

#showObject



21
22
# File 'app/controllers/api/v2/foreman_datacenter/console_server_port_templates_controller.rb', line 21

def show
end