Skip to content

Commit

Permalink
fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Oct 17, 2023
1 parent bee6353 commit 665d0e7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2577,7 +2577,7 @@ func main() {

// highlight-start
resp, err := multitenancy.CreateOrUpdateThirdPartyConfig(tenantId, tpmodels.ProviderConfig{
ThirdPartyId: "active-directoy",
ThirdPartyId: "active-directory",
Name: "Active Directory",
Clients: []tpmodels.ProviderClientConfig{
{
Expand Down Expand Up @@ -2615,7 +2615,7 @@ from supertokens_python.recipe.thirdparty.provider import ProviderConfig, Provid
async def some_func():
tenant_id = "customer1"
result = await create_or_update_third_party_config(tenant_id, ProviderConfig(
third_party_id="active-directoy",
third_party_id="active-directory",
name="Active Directoy",
clients=[
ProviderClientConfig(
Expand Down Expand Up @@ -2646,7 +2646,7 @@ from supertokens_python.recipe.thirdparty.provider import ProviderConfig, Provid

tenant_id = "customer1"
result = create_or_update_third_party_config(tenant_id, ProviderConfig(
third_party_id="active-directoy",
third_party_id="active-directory",
name="Active Directoy",
clients=[
ProviderClientConfig(
Expand Down Expand Up @@ -2681,7 +2681,7 @@ curl --location --request PUT '^{coreInjector_uri_without_quotes}/<TENANT_ID>/re
--header 'Content-Type: application/json' \
--data-raw '{
"config": {
"thirdPartyId": "active-directoy",
"thirdPartyId": "active-directory",
"name": "Active Directory",
"clients": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2577,7 +2577,7 @@ func main() {

// highlight-start
resp, err := multitenancy.CreateOrUpdateThirdPartyConfig(tenantId, tpmodels.ProviderConfig{
ThirdPartyId: "active-directoy",
ThirdPartyId: "active-directory",
Name: "Active Directory",
Clients: []tpmodels.ProviderClientConfig{
{
Expand Down Expand Up @@ -2615,7 +2615,7 @@ from supertokens_python.recipe.thirdparty.provider import ProviderConfig, Provid
async def some_func():
tenant_id = "customer1"
result = await create_or_update_third_party_config(tenant_id, ProviderConfig(
third_party_id="active-directoy",
third_party_id="active-directory",
name="Active Directoy",
clients=[
ProviderClientConfig(
Expand Down Expand Up @@ -2646,7 +2646,7 @@ from supertokens_python.recipe.thirdparty.provider import ProviderConfig, Provid

tenant_id = "customer1"
result = create_or_update_third_party_config(tenant_id, ProviderConfig(
third_party_id="active-directoy",
third_party_id="active-directory",
name="Active Directoy",
clients=[
ProviderClientConfig(
Expand Down Expand Up @@ -2681,7 +2681,7 @@ curl --location --request PUT '^{coreInjector_uri_without_quotes}/<TENANT_ID>/re
--header 'Content-Type: application/json' \
--data-raw '{
"config": {
"thirdPartyId": "active-directoy",
"thirdPartyId": "active-directory",
"name": "Active Directory",
"clients": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2577,7 +2577,7 @@ func main() {

// highlight-start
resp, err := multitenancy.CreateOrUpdateThirdPartyConfig(tenantId, tpmodels.ProviderConfig{
ThirdPartyId: "active-directoy",
ThirdPartyId: "active-directory",
Name: "Active Directory",
Clients: []tpmodels.ProviderClientConfig{
{
Expand Down Expand Up @@ -2615,7 +2615,7 @@ from supertokens_python.recipe.thirdparty.provider import ProviderConfig, Provid
async def some_func():
tenant_id = "customer1"
result = await create_or_update_third_party_config(tenant_id, ProviderConfig(
third_party_id="active-directoy",
third_party_id="active-directory",
name="Active Directoy",
clients=[
ProviderClientConfig(
Expand Down Expand Up @@ -2646,7 +2646,7 @@ from supertokens_python.recipe.thirdparty.provider import ProviderConfig, Provid

tenant_id = "customer1"
result = create_or_update_third_party_config(tenant_id, ProviderConfig(
third_party_id="active-directoy",
third_party_id="active-directory",
name="Active Directoy",
clients=[
ProviderClientConfig(
Expand Down Expand Up @@ -2681,7 +2681,7 @@ curl --location --request PUT '^{coreInjector_uri_without_quotes}/<TENANT_ID>/re
--header 'Content-Type: application/json' \
--data-raw '{
"config": {
"thirdPartyId": "active-directoy",
"thirdPartyId": "active-directory",
"name": "Active Directory",
"clients": [
{
Expand Down

0 comments on commit 665d0e7

Please sign in to comment.