Sha256: 4d550c168c2a4158c46119e71489d28bc0f28d91d1dfc3caf257a944acb2b3de
Contents?: true
Size: 397 Bytes
Versions: 15
Compression:
Stored size: 397 Bytes
Contents
# frozen_string_literal: true module FinApps module REST class UserInstitutionsStatuses < FinAppsCore::REST::Resources # :nodoc: def show(id) not_blank(id, :id) path = "institutions/consumer/#{ERB::Util.url_encode(id)}/status" super id, path end def update path = 'institutions/refresh' super nil, path end end end end
Version data entries
15 entries across 15 versions & 1 rubygems