Sha256: 7fb3e8e9681dc8fd2c11dcf939077b338238a3d1831ca0cb2a6d673ec16c4b24
Contents?: true
Size: 398 Bytes
Versions: 32
Compression:
Stored size: 398 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
32 entries across 32 versions & 1 rubygems