From cac6cecbfbc89335db48a0eac4613d38eefd7ec0 Mon Sep 17 00:00:00 2001 From: IJ Kim <ij@internet2.edu> Date: Thu, 20 Aug 2020 13:57:01 -0400 Subject: [PATCH] fixed the value of Role --- lib/sf/account.rb | 2 +- lib/sf/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sf/account.rb b/lib/sf/account.rb index 5fea935..1270b2d 100644 --- a/lib/sf/account.rb +++ b/lib/sf/account.rb @@ -139,7 +139,7 @@ def self.cert_service_subscribers Supporting_Institution__r.InCommon_Weblink__c from Service_Institution__c where Service__r.Name = \'InCommon Certificate Service\' and Service_End_Date__c = null - and (Type_of_Support__c = 'Subscriber' or Type_of_Support__c = 'Subscriber Parent') + and (Type_of_Support__c = 'Subscriber' or Type_of_Support__c = 'subscriber_parent') and Do_Not_Publish__c <> true") build_collection sobjects.map(&:Supporting_Institution__r) unless sobjects.blank? end diff --git a/lib/sf/version.rb b/lib/sf/version.rb index 1731ac2..1e9ef38 100644 --- a/lib/sf/version.rb +++ b/lib/sf/version.rb @@ -1,3 +1,3 @@ module Sf - VERSION = "0.1.61" + VERSION = "0.1.64" end