class Eco::API::Common::Loaders::Session < Eco::API::Common::Loaders::Config class << self # This is a config tied to the current environment session. def config return @config if instance_variable_defined?(:@config) @config = super(key: super.apis.active_root_name) end end delegate_missing_to :workflow end