Sha256: d507f495c214f648c2c2ed4ad20cbfe15d70933393c44863a132de1036913710
Contents?: true
Size: 521 Bytes
Versions: 47
Compression:
Stored size: 521 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_attributes(remote_execution_feature_params) process_success :object => @remote_execution_feature else process_error :object => @remote_execution_feature end end end
Version data entries
47 entries across 47 versions & 1 rubygems