Skip to content

Commit

Permalink
Merge pull request #3336 from FusionAuth/wied03/tenant_api_correction
Browse files Browse the repository at this point in the history
Correct email configuration field name
  • Loading branch information
wied03 authored Oct 16, 2024
2 parents d2f6fc2 + 5692623 commit d868e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion astro/src/content/docs/apis/_tenant-response-body-base.mdx
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

0 comments on commit d868e7c

Please sign in to comment.