gitlab_support_readiness 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/support_readiness/support_super_form_processor/global_ir_dotcom_subscriptions_extension.rb +5 -0
- data/lib/support_readiness/support_super_form_processor/global_ir_dotcom_trials_extension.rb +5 -0
- data/lib/support_readiness/support_super_form_processor/global_ir_sm_subscriptions_scl.rb +12 -12
- data/lib/support_readiness/support_super_form_processor/global_ir_sm_subscriptions_temp.rb +17 -12
- data/lib/support_readiness/support_super_form_processor/global_ir_sm_trials_extension.rb +6 -1
- data/lib/support_readiness/support_super_form_processor/usgov_ir_sm_subs_temp.rb +5 -0
- data/lib/support_readiness/support_super_form_processor/usgov_ir_sm_trials_extension.rb +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 703f003db5975c12622344c5eaca5cc124a58ccac39c71c4ceb2fda150d63f64
|
4
|
+
data.tar.gz: 887049f6914e19d04e5934563421fb4bad6bb05941f44b3a738c91f8d87a57ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e95c982f03f823bb994005d3a5fd9b312cd591965a8c137e36019b1f28d032bd2686aeee8822104144ae5a6b87fa257e2f5c8b0ffd63c689eadd80bc8a7bbe7a
|
7
|
+
data.tar.gz: 51e533ddb15e7d3a71735d3c57ced98373500ed9c5d2a1b43022d0c307c29cb6e3ec9032cdc7931446a2e7b0a49f71e03d54e0936fb3284ea1b85625c535c883
|
data/lib/support_readiness/support_super_form_processor/global_ir_dotcom_subscriptions_extension.rb
CHANGED
@@ -243,6 +243,11 @@ module Readiness
|
|
243
243
|
<li>Subscription name: #{sub_name}</li>
|
244
244
|
<li>Reason for extension: #{reason}</li>
|
245
245
|
</ul>
|
246
|
+
<p>
|
247
|
+
<b>
|
248
|
+
Verify the provided proof of approval of the extension before proceeding
|
249
|
+
</b>
|
250
|
+
</p>
|
246
251
|
<p>
|
247
252
|
Some additional context for this request is:
|
248
253
|
</p>
|
data/lib/support_readiness/support_super_form_processor/global_ir_dotcom_trials_extension.rb
CHANGED
@@ -243,6 +243,11 @@ module Readiness
|
|
243
243
|
<li>Plan: #{plan}</li>
|
244
244
|
<li>Reason for extension: #{reason}</li>
|
245
245
|
</ul>
|
246
|
+
<p>
|
247
|
+
<b>
|
248
|
+
Verify the provided proof of approval of the extension before proceeding
|
249
|
+
</b>
|
250
|
+
</p>
|
246
251
|
<p>
|
247
252
|
Some additional context for this request is:
|
248
253
|
</p>
|
@@ -51,18 +51,18 @@ module Readiness
|
|
51
51
|
ticket.status = 'new'
|
52
52
|
ticket.ticket_form_id = @lnr_form.id
|
53
53
|
ticket.custom_fields = [
|
54
|
-
{ id: @area_of_focus_field, value: 'aof_lnr' },
|
55
|
-
{ id: @ticket_stage_field, value: 'stage-frt' },
|
56
|
-
{ id: @prfs_field, value: 'all_regions' },
|
57
|
-
{ id: @plan_field, value: 'free_plan' },
|
58
|
-
{ id: @sales_name_field, value: zd_user.name },
|
59
|
-
{ id: @sales_email_field, value: zd_user.email },
|
60
|
-
{ id: @severity_field, value: 'sev3' },
|
61
|
-
{ id: @arr_field, value: '0' },
|
62
|
-
{ id: @priority_field, value: 'medium' },
|
63
|
-
{ id: @ir_category_field, value: 'ir_scl_exemption' },
|
64
|
-
{ id: @ir_submitter_field, value: zd_user.email },
|
65
|
-
{ id: @channel_field, value: 'created_by_agent' }
|
54
|
+
{ id: @area_of_focus_field.id, value: 'aof_lnr' },
|
55
|
+
{ id: @ticket_stage_field.id, value: 'stage-frt' },
|
56
|
+
{ id: @prfs_field.id, value: 'all_regions' },
|
57
|
+
{ id: @plan_field.id, value: 'free_plan' },
|
58
|
+
{ id: @sales_name_field.id, value: zd_user.name },
|
59
|
+
{ id: @sales_email_field.id, value: zd_user.email },
|
60
|
+
{ id: @severity_field.id, value: 'sev3' },
|
61
|
+
{ id: @arr_field.id, value: '0' },
|
62
|
+
{ id: @priority_field.id, value: 'medium' },
|
63
|
+
{ id: @ir_category_field.id, value: 'ir_scl_exemption' },
|
64
|
+
{ id: @ir_submitter_field.id, value: zd_user.email },
|
65
|
+
{ id: @channel_field.id, value: 'created_by_agent' }
|
66
66
|
]
|
67
67
|
create = Readiness::Zendesk::Tickets.create!(@zendesk_client, ticket)
|
68
68
|
puts "Ticket created: #{create.id}"
|
@@ -51,18 +51,18 @@ module Readiness
|
|
51
51
|
ticket.status = 'new'
|
52
52
|
ticket.ticket_form_id = @lnr_form.id
|
53
53
|
ticket.custom_fields = [
|
54
|
-
{ id: @area_of_focus_field, value: 'aof_lnr' },
|
55
|
-
{ id: @ticket_stage_field, value: 'stage-frt' },
|
56
|
-
{ id: @prfs_field, value: 'all_regions' },
|
57
|
-
{ id: @plan_field, value: 'free_plan' },
|
58
|
-
{ id: @sales_name_field, value: zd_user.name },
|
59
|
-
{ id: @sales_email_field, value: zd_user.email },
|
60
|
-
{ id: @severity_field, value: 'sev3' },
|
61
|
-
{ id: @arr_field, value: '0' },
|
62
|
-
{ id: @priority_field, value: 'medium' },
|
63
|
-
{ id: @ir_category_field, value: 'ir_sm_temp' },
|
64
|
-
{ id: @ir_submitter_field, value: zd_user.email },
|
65
|
-
{ id: @channel_field, value: 'created_by_agent' }
|
54
|
+
{ id: @area_of_focus_field.id, value: 'aof_lnr' },
|
55
|
+
{ id: @ticket_stage_field.id, value: 'stage-frt' },
|
56
|
+
{ id: @prfs_field.id, value: 'all_regions' },
|
57
|
+
{ id: @plan_field.id, value: 'free_plan' },
|
58
|
+
{ id: @sales_name_field.id, value: zd_user.name },
|
59
|
+
{ id: @sales_email_field.id, value: zd_user.email },
|
60
|
+
{ id: @severity_field.id, value: 'sev3' },
|
61
|
+
{ id: @arr_field.id, value: '0' },
|
62
|
+
{ id: @priority_field.id, value: 'medium' },
|
63
|
+
{ id: @ir_category_field.id, value: 'ir_sm_temp' },
|
64
|
+
{ id: @ir_submitter_field.id, value: zd_user.email },
|
65
|
+
{ id: @channel_field.id, value: 'created_by_agent' }
|
66
66
|
]
|
67
67
|
create = Readiness::Zendesk::Tickets.create!(@zendesk_client, ticket)
|
68
68
|
puts "Ticket created: #{create.id}"
|
@@ -239,6 +239,11 @@ module Readiness
|
|
239
239
|
<li>Plan for temp license: #{plan}</li>
|
240
240
|
<li>Reason for extension: #{reason}</li>
|
241
241
|
</ul>
|
242
|
+
<p>
|
243
|
+
<b>
|
244
|
+
Verify the provided proof of approval of the extension before proceeding
|
245
|
+
</b>
|
246
|
+
</p>
|
242
247
|
<p>
|
243
248
|
Some additional context for this request is:
|
244
249
|
</p>
|
@@ -231,13 +231,18 @@ module Readiness
|
|
231
231
|
<a href="https://customers.gitlab.com/admin/customer?model_name=customer&query=#{contact_email}" target='_blank'>(Portal Search)</a>
|
232
232
|
</li>
|
233
233
|
<li>Company: #{company}</li>
|
234
|
-
<li>Current license: <a href='#{license_link}' target='_blank'
|
234
|
+
<li>Current license: <a href='#{license_link}' target='_blank'>#{license_link}</a></li>
|
235
235
|
<li>Current license expiration date: #{expiration}</li>
|
236
236
|
<li>Desired expiration date: #{extension_date}</li>
|
237
237
|
<li>User count: #{current}</li>
|
238
238
|
<li>Plan: #{plan}</li>
|
239
239
|
<li>Reason for extension: #{reason}</li>
|
240
240
|
</ul>
|
241
|
+
<p>
|
242
|
+
<b>
|
243
|
+
Verify the provided proof of approval of the extension before proceeding
|
244
|
+
</b>
|
245
|
+
</p>
|
241
246
|
<p>
|
242
247
|
Some additional context for this request is:
|
243
248
|
</p>
|
@@ -211,6 +211,11 @@ module Readiness
|
|
211
211
|
<li>Reason for extension: #{reason}</li>
|
212
212
|
<li>GitLab Version: #{version}</li>
|
213
213
|
</ul>
|
214
|
+
<p>
|
215
|
+
<b>
|
216
|
+
Verify the provided proof of approval of the extension before proceeding
|
217
|
+
</b>
|
218
|
+
</p>
|
214
219
|
<p>
|
215
220
|
Some additional context for this request is:
|
216
221
|
</p>
|
@@ -211,6 +211,11 @@ module Readiness
|
|
211
211
|
<li>Reason for extension: #{reason}</li>
|
212
212
|
<li>GitLab Version: #{version}</li>
|
213
213
|
</ul>
|
214
|
+
<p>
|
215
|
+
<b>
|
216
|
+
Verify the provided proof of approval of the extension before proceeding
|
217
|
+
</b>
|
218
|
+
</p>
|
214
219
|
<p>
|
215
220
|
Some additional context for this request is:
|
216
221
|
</p>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_support_readiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Colyer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|