Sha256: fda242a8459510e227696abd79a47ab3bdff91d42b8abc42edfdf093edf61904

Contents?: true

Size: 445 Bytes

Versions: 58

Compression:

Stored size: 445 Bytes

Contents

# typed: false
# frozen_string_literal: true

module PathParameter
  module SettingsParameters
    extend T::Sig

    sig { returns(String) }
    def pparam_plug_installation_id
      yetto_path_params.fetch(:event, "")
    end

    sig { returns(T::Hash[Symbol, T.untyped]) }
    def settings_path_params
      return {} if params.blank?

      {
        plug_installation_id: params.fetch(:plug_installation_id, ""),
      }
    end
  end
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
hephaestus-0.8.11 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.10 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.9.2 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.9.1 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.9 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.8 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.7.5 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.7.4 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.7.3 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.7.2 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.7.1 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.7 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.6 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.5 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.4.1 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.4 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.3.4 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.3.3 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.3.2 templates/app/lib/path_parameter/settings_parameters.rb
hephaestus-0.8.3.1 templates/app/lib/path_parameter/settings_parameters.rb