Skip to content

Commit

Permalink
added co_host_private
Browse files Browse the repository at this point in the history
  • Loading branch information
ij committed Jul 6, 2015
1 parent c0d1b2e commit c48e696
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions lib/sf/reg_registration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ class Sf::RegRegistration
'exclude_directory', 'first_name', 'full_name', 'functional_title',
'informal_name', 'last_name', 'processed_by', 'processed_at',
'mobile_number', 'user_entered_organization_name',
'organization_display_name', 'phone_number', 'prefix',
'reg_classes', 'reg_event_id', 'reg_registration_id', 'rne_private',
'roster_private', 'sponsor_private', 'state', 'status',
'street_address', 'submitted_at', 'title', 'updated_at', 'version',
'website', 'zip', 'fax_number' ]
'organization_display_name', 'phone_number', 'prefix',
'reg_classes', 'reg_event_id', 'reg_registration_id',
'rne_private', 'roster_private', 'sponsor_private',
'co_host_private', 'state', 'status', 'street_address',
'submitted_at', 'title', 'updated_at', 'version', 'website', 'zip',
'fax_number' ]

FIELDS_SELECT_STR = FIELDS.map{|fd| "#{fd}__c"}.join(', ')

Expand Down Expand Up @@ -88,6 +89,7 @@ def registration_mapping
'id' => 'reg_registration_id__c',
'rne_private' => 'rne_private__c',
'roster_private' => 'roster_private__c',
'co_host_private' => 'co_host_private__c',
'sponsor_private' => 'sponsor_private__c',
'state' => 'state__c',
'status' => 'status__c',
Expand Down
2 changes: 1 addition & 1 deletion lib/sf/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Sf
VERSION = "0.1.24"
VERSION = "0.1.25"
end

0 comments on commit c48e696

Please sign in to comment.