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