Sha256: ac6186b7ee3cc4c17de3789a4ebbd51600e770e8770889495278416202550333
Contents?: true
Size: 500 Bytes
Versions: 13
Compression:
Stored size: 500 Bytes
Contents
# frozen_string_literal: true module FinApps module REST class UserInstitutionsStatuses < FinApps::REST::Resources # :nodoc: using ObjectExtensions using StringExtensions def show(id) raise MissingArgumentsError.new 'Missing argument: ui_id' if id.blank? path = "institutions/user/#{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
13 entries across 13 versions & 1 rubygems