Sha256: 8922bae0c9c5422c1fa87019462f405f2a25857b00b769efe77585475ba3113f
Contents?: true
Size: 430 Bytes
Versions: 26
Compression:
Stored size: 430 Bytes
Contents
module TheCity class UserInvitationWriter < ApiWriter # Constructor. # # @param data The json object data to save. def initialize(data) @url_action = :post @url_data_path = "/users/#{data[:user_id]}/invitations" @url_data_params = data end def delete_object raise TheCityExceptions::TheCityResponseError.new('Unable to delete user invitation') end end end
Version data entries
26 entries across 26 versions & 1 rubygems