Sha256: d1c13a676a42ee346ee1fcaae30685407fd45ca69985bfddbfb15615d368ce2f

Contents?: true

Size: 351 Bytes

Versions: 3

Compression:

Stored size: 351 Bytes

Contents

# frozen_string_literal: true
module FinApps
  module REST
    class UserInstitutionsForms < FinAppsCore::REST::Resources
      using ObjectExtensions
      using StringExtensions

      def show(id)
        not_blank(id, :id)

        path = "institutions/consumer/#{ERB::Util.url_encode(id)}/form"
        super id, path
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
finapps-2.2.7 lib/finapps/rest/user_institutions_forms.rb
finapps-2.2.6 lib/finapps/rest/user_institutions_forms.rb
finapps-2.2.5 lib/finapps/rest/user_institutions_forms.rb