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

Correct email configuration field name #3336

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion astro/src/content/docs/apis/_tenant-request-body.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ import TransactionTypes from 'src/content/docs/apis/_transaction-types.mdx';
An object that can hold any information about the Tenant that should be persisted.
</APIField>

<TenantApplicationEmailConfiguration base_field_name="tenant" />
<TenantApplicationEmailConfiguration base_field_name="tenant" is_tenant={true} />

<APIField name="tenant.eventConfiguration.events" type="Object" optional since="1.8.0">
A mapping of the configuration for each event type that FusionAuth sends. The event types that are the keys into this Object are:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ import JSON from 'src/components/JSON.astro';
An object that can hold any information about the Tenant that should be persisted.
</APIField>

<TenantApplicationEmailConfiguration base_field_name={props.base_field_name} />
<TenantApplicationEmailConfiguration base_field_name={props.base_field_name} is_tenant={true} />

<APIField name={props.base_field_name + '.eventConfiguration.events'} type="Object" since="1.8.0">
A mapping of the configuration for each event type that FusionAuth sends. The event types that are the keys into this Object are:
Expand Down
Loading