File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/main/java/io/fusionauth/domain/api/identityProvider Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 2018-2023 , FusionAuth, All Rights Reserved
2+ * Copyright (c) 2018-2025 , FusionAuth, All Rights Reserved
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
@@ -41,6 +41,7 @@ public LookupResponse() {
4141 public LookupResponse (BaseIdentityProvider <?> identityProvider ) {
4242 this .identityProvider = new IdentityProviderDetails ();
4343 this .identityProvider .id = identityProvider .id ;
44+ this .identityProvider .tenantId = identityProvider .tenantId ;
4445 this .identityProvider .name = identityProvider .name ;
4546 this .identityProvider .type = identityProvider .getType ();
4647 // Add all enabled application Ids
@@ -81,6 +82,8 @@ public static class IdentityProviderDetails {
8182
8283 public IdentityProviderOauth2Configuration oauth2 ;
8384
85+ public UUID tenantId ;
86+
8487 public IdentityProviderType type ;
8588 }
8689}
You can’t perform that action at this time.
0 commit comments