Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for null beneficiary/purchaser puid #147

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update on_seat_qty_changed_workflow.bicep
  • Loading branch information
caseywatson authored Dec 17, 2024
commit 5d0b7fc8a24b0eaefc2966e3e08561670c313644
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ resource workflow 'Microsoft.Logic/workflows@2019-05-01' = {
type: 'string'
}
'Beneficiary User ID': {
type: 'string'
type: ['string', 'null']
}
'Is Free Trial Subscription?': {
type: 'boolean'
Expand All @@ -159,7 +159,7 @@ resource workflow 'Microsoft.Logic/workflows@2019-05-01' = {
type: 'string'
}
'Purchaser User ID': {
type: 'string'
type: ['string', 'null']
}
'Subscription End Date': {
type: ['string', 'null']
Expand Down