Skip to content

Commit 04f7c03

Browse files
authored
Merge spencer/eng-3474/managed-domains (#157)
* add tenantId to IdP lookup by managed domain response
1 parent 4d3e5a7 commit 04f7c03

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/io/fusionauth/domain/api/identityProvider/LookupResponse.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
}

0 commit comments

Comments
 (0)