gitlab_support_readiness 1.0.82 → 1.0.84
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/support_readiness/repos/zendesk_salesforce_sync.rb +4 -4
- data/lib/support_readiness/salesforce/accounts.rb +6 -6
- data/lib/support_readiness/support_super_form_processor/create_macro.rb +1 -1
- data/lib/support_readiness/support_super_form_processor/edit_macro.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cbd37351a0c24f06f0cd06e4d677fe5b784a7b66f6e3263c64c8f204f0190c2
|
4
|
+
data.tar.gz: 5432b48c5bc04cd551af88fe64f36b87b852cc8887d9404b3f67bad42a6b5f7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43b9ede1e457fcdf002411ce43949f9c150a42dedad327097766e88c93dc48c943cbcacd78a726b79ef523d7f873bd9d2feedd73155a886071fc7d810bc337b1
|
7
|
+
data.tar.gz: 244f55ea305bf29a5f88e0f1dbe7cecdb7cac039ccff07f44ad084bbca776388a922f53728ce70d8056b8fa4f168270576410d2783c31d576849e4cec367e039
|
@@ -766,8 +766,8 @@ module Readiness
|
|
766
766
|
'sub_oss' => org.organization_fields['sub_oss'],
|
767
767
|
'sub_community_other' => org.organization_fields['sub_community_other'],
|
768
768
|
'sub_ss_ase' => org.organization_fields['sub_ss_ase'],
|
769
|
-
'
|
770
|
-
'
|
769
|
+
'sub_ss_growth' => org.organization_fields['sub_ss_growth'],
|
770
|
+
'sub_ss_enterprise' => org.organization_fields['sub_ss_enterprise'],
|
771
771
|
'sub_other' => org.organization_fields['sub_other'],
|
772
772
|
'partner_customer' => org.organization_fields['partner_customer'],
|
773
773
|
'not_in_sfdc' => org.organization_fields['not_in_sfdc'],
|
@@ -1012,8 +1012,8 @@ module Readiness
|
|
1012
1012
|
'sub_sm_starter' => account['sub_sm_starter'],
|
1013
1013
|
'sub_sm_ultimate' => account['sub_sm_ultimate'],
|
1014
1014
|
'sub_ss_ase' => account['sub_ss_ase'],
|
1015
|
-
'
|
1016
|
-
'
|
1015
|
+
'sub_ss_growth' => account['sub_ss_growth'],
|
1016
|
+
'sub_ss_enterprise' => account['sub_ss_enterprise'],
|
1017
1017
|
'sub_usgov_12x5' => account['sub_usgov_12x5'],
|
1018
1018
|
'sub_usgov_24x7' => account['sub_usgov_24x7'],
|
1019
1019
|
'support_hold' => account['support_hold'],
|
@@ -170,8 +170,8 @@ module Readiness
|
|
170
170
|
"sub_oss" => subscriptions.include?('sub_oss'),
|
171
171
|
"sub_community_other" => subscriptions.include?('sub_community_other'),
|
172
172
|
"sub_ss_ase" => subscriptions.include?('sub_ss_ase'),
|
173
|
-
'
|
174
|
-
'
|
173
|
+
'sub_ss_growth' => subscriptions.include?('sub_ss_growth'),
|
174
|
+
'sub_ss_enterprise' => subscriptions.include?('sub_ss_enterprise'),
|
175
175
|
"sub_other" => subscriptions.include?('sub_other'),
|
176
176
|
"partner_customer" => account_is_partner_customer?(account, type),
|
177
177
|
"not_in_sfdc" => false,
|
@@ -264,8 +264,8 @@ module Readiness
|
|
264
264
|
sub_types.push('sub_oss') if SubscriptionDefinitions.oss.include? sub.Name
|
265
265
|
sub_types.push('sub_community_other') if SubscriptionDefinitions.community_other.include? sub.Name
|
266
266
|
sub_types.push('sub_ss_ase') if SubscriptionDefinitions.ss_ase.include? sub.Name
|
267
|
-
sub_types.push('
|
268
|
-
sub_types.push('
|
267
|
+
sub_types.push('sub_ss_growth') if SubscriptionDefinitions.ss_success_advanced.include? sub.Name
|
268
|
+
sub_types.push('sub_ss_enterprise') if SubscriptionDefinitions.ss_success_signature.include? sub.Name
|
269
269
|
sub_types.push('sub_usgov_24x7') if SubscriptionDefinitions.fedramp.include? sub.Name
|
270
270
|
sub_types.push('sub_gitlab_dedicated') if SubscriptionDefinitions.fedramp.include? sub.Name
|
271
271
|
sub_types.push('sub_other') if sub_types.count.zero?
|
@@ -400,8 +400,8 @@ module Readiness
|
|
400
400
|
return 'custom' if subscriptions.include? 'sub_usgov_12x5'
|
401
401
|
return 'custom' if subscriptions.include? 'sub_usgov_24x7'
|
402
402
|
return 'custom' if subscriptions.include? 'sub_ss_ase'
|
403
|
-
return 'custom' if subscriptions.include? '
|
404
|
-
return 'custom' if subscriptions.include? '
|
403
|
+
return 'custom' if subscriptions.include? 'sub_ss_growth'
|
404
|
+
return 'custom' if subscriptions.include? 'sub_ss_enterprise'
|
405
405
|
return 'community' if subscriptions.include? 'sub_edu'
|
406
406
|
return 'community' if subscriptions.include? 'sub_oss'
|
407
407
|
return 'community' if subscriptions.include? 'sub_community_other'
|
@@ -161,7 +161,7 @@ module Readiness
|
|
161
161
|
- Assigne change: #{assignee}
|
162
162
|
- Tag to add: #{tag}
|
163
163
|
- Type of comment: #{comment}
|
164
|
-
- Managed content file: #{file_path.nil? ? 'N/A' :
|
164
|
+
- Managed content file: #{file_path.nil? ? 'N/A' : file_path}
|
165
165
|
|
166
166
|
Some other details are:
|
167
167
|
|