Sha256: 6af6a3cd581c98b1e59c91f0161000722f5c6052bea97a6e1f8ec3179e98f48a
Contents?: true
Size: 452 Bytes
Versions: 4
Compression:
Stored size: 452 Bytes
Contents
# frozen_string_literal: true module FinApps module REST class UserInstitutionsStatuses < FinAppsCore::REST::Resources # :nodoc: using ObjectExtensions using StringExtensions def show(id) not_blank(id, :id) 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
4 entries across 4 versions & 1 rubygems