Sha256: b125199e1228e9cee8dbffff98fbf60018714510a81acd3ae46191e14b3d165d
Contents?: true
Size: 511 Bytes
Versions: 99
Compression:
Stored size: 511 Bytes
Contents
class RemoteExecutionFeaturesController < ::ApplicationController before_action :find_resource, :only => [:show, :update] include ::Foreman::Controller::Parameters::RemoteExecutionFeature def index @remote_execution_features = resource_base.all end def show end def update if @remote_execution_feature.update(remote_execution_feature_params) process_success :object => @remote_execution_feature else process_error :object => @remote_execution_feature end end end
Version data entries
99 entries across 99 versions & 1 rubygems