Skip to content

Commit

Permalink
Merge pull request #18537 from JeethJJ/master
Browse files Browse the repository at this point in the history
Add offline-invite-link API
  • Loading branch information
madurangasiriwardena committed Dec 14, 2023
2 parents 3b373ad + b4157bf commit b61333c
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
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
5 changes: 5 additions & 0 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

0 comments on commit b61333c

Please sign in to comment.