From bf29c5307f53220a47873abc8728524426464b75 Mon Sep 17 00:00:00 2001 From: IJ Kim Date: Fri, 12 Sep 2014 11:44:23 -0400 Subject: [PATCH] make proposal migration not to update the session name which is auto generation now --- lib/sf/session.rb | 2 +- lib/sf/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sf/session.rb b/lib/sf/session.rb index 0af5674..90fcb07 100644 --- a/lib/sf/session.rb +++ b/lib/sf/session.rb @@ -23,7 +23,7 @@ def proposal_attrs sf_event = Sf::RegEvent.find_by_code(self.proposal.meeting_config.event_code) attrs = {} attrs['event__c'] = sf_event.Id - attrs['Name'] = self.proposal.session_title[0..79] + #attrs['Name'] = self.proposal.session_title[0..79] attrs['title__c'] = self.proposal.session_title attrs['abstract__c'] = self.proposal.abstract attrs['cms_proposal_id__c'] = self.proposal.id diff --git a/lib/sf/version.rb b/lib/sf/version.rb index ae83c99..aa164e7 100644 --- a/lib/sf/version.rb +++ b/lib/sf/version.rb @@ -1,3 +1,3 @@ module Sf - VERSION = "0.1.13" + VERSION = "0.1.14" end