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

Add offline-invite-link API #18537

Merged
merged 6 commits into from
Dec 14, 2023
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
8 changes: 8 additions & 0 deletions modules/api-resources/api-resources-full/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,14 @@
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.expired.password.identification.common</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.api.user.onboard.v1</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.api.user.onboard.common</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.local.auth.fido</groupId>
<artifactId>org.wso2.carbon.identity.api.user.fido2</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<import resource="classpath:META-INF/cxf/input-validation-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/idle-account-identification-cxf.xml"/>
<import resource="classpath:META-INF/cxf/expired-password-identification-cxf.xml"/>
<import resource="classpath:META-INF/cxf/user-onboard-management-cxf.xml"/>

<import resource="classpath:META-INF/cxf/identity-governance-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/admin-advisory-management-server-v1-cxf.xml"/>
Expand Down Expand Up @@ -214,6 +215,7 @@
<bean class="org.wso2.carbon.identity.rest.api.user.totp.v1.MeApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.idv.v1.MeApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.idv.v1.DefaultApi"/>
<bean class="org.wso2.carbon.identity.api.user.onboard.v1.OfflineInviteLinkApi"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<bean class="com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider">
Expand Down Expand Up @@ -251,6 +253,7 @@
<bean class="org.wso2.carbon.identity.rest.api.user.totp.v1.MeApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.idv.v1.MeApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.idv.v1.DefaultApi"/>
<bean class="org.wso2.carbon.identity.api.user.onboard.v1.OfflineInviteLinkApi"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<bean class="com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider">
Expand Down
10 changes: 10 additions & 0 deletions modules/api-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,16 @@
<artifactId>org.wso2.carbon.identity.api.user.idv.common</artifactId>
<version>${identity.user.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.api.user.onboard.v1</artifactId>
<version>${identity.user.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.api.user.onboard.common</artifactId>
<version>${identity.user.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.server.permission.management.v1</artifactId>
Expand Down
11 changes: 11 additions & 0 deletions modules/p2-profile-gen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
org.wso2.carbon.identity.governance:org.wso2.carbon.identity.tenant.resource.manager.feature:${identity.governance.version}
</featureArtifactDef>

<!-- User Offline Onboard Feature -->
<featureArtifactDef>
org.wso2.carbon.identity.governance:org.wso2.carbon.identity.user.onboard.core.service.feature:${identity.governance.version}
</featureArtifactDef>

<!-- registry related features -->
<featureArtifactDef>
org.wso2.carbon.registry:org.wso2.carbon.registry.core.feature:${carbon.registry.version}
Expand Down Expand Up @@ -754,6 +759,12 @@
<version>${identity.governance.version}</version>
</feature>

<!-- User Offline Onboard Feature -->
<feature>
<id>org.wso2.carbon.identity.user.onboard.core.service</id>
<version>${identity.governance.version}</version>
</feature>

<!-- Features required for Cloud Identity -->
<feature>
<id>org.wso2.carbon.tenant.mgt.common.feature.group</id>
Expand Down
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2193,6 +2193,11 @@
<version>${apacheds.api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.governance</groupId>
<artifactId>org.wso2.carbon.identity.user.onboard.core.service</artifactId>
<version>${identity.governance.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -2264,7 +2269,7 @@
<carbon.consent.mgt.version>2.5.2</carbon.consent.mgt.version>

<!--Identity Governance Version-->
<identity.governance.version>1.8.97</identity.governance.version>
<identity.governance.version>1.8.98</identity.governance.version>

<!--Identity Carbon Versions-->
<identity.carbon.auth.saml2.version>5.8.5</identity.carbon.auth.saml2.version>
Expand Down Expand Up @@ -2368,7 +2373,7 @@

<!-- Identity REST API feature -->
<identity.api.dispatcher.version>2.0.13</identity.api.dispatcher.version>
<identity.user.api.version>1.3.29</identity.user.api.version>
<identity.user.api.version>1.3.30</identity.user.api.version>
<identity.server.api.version>1.2.141</identity.server.api.version>

<identity.agent.sso.version>5.5.9</identity.agent.sso.version>
Expand Down