mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request 'Fix direct app publishing issue on publisher' (#31) from shamalka1/device-mgt-core:publisher-fix into master
Reviewed-on: https://repository.entgra.net/community/device-mgt-core/pulls/31
This commit is contained in:
commit
5be19f28fd
@ -169,7 +169,7 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
@Path("/ent-app")
|
||||
public Response createEntApp(
|
||||
ApplicationWrapper applicationWrapper, @QueryParam("is-published") boolean isPublished) {
|
||||
ApplicationWrapper applicationWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||
try {
|
||||
return createApplication(applicationWrapper, isPublished);
|
||||
} catch (BadRequestException e) {
|
||||
@ -191,7 +191,7 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
@Path("/web-app")
|
||||
public Response createWebApp(
|
||||
WebAppWrapper webAppWrapper, @QueryParam("is-published") boolean isPublished) {
|
||||
WebAppWrapper webAppWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||
try {
|
||||
return createApplication(webAppWrapper, isPublished);
|
||||
} catch (BadRequestException e) {
|
||||
@ -208,12 +208,12 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
||||
return Response.status(Response.Status.BAD_REQUEST).entity(msg).build();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@POST
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
@Path("/public-app")
|
||||
public Response createPubApp(
|
||||
PublicAppWrapper publicAppWrapper, @QueryParam("is-published") boolean isPublished) {
|
||||
PublicAppWrapper publicAppWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||
try {
|
||||
return createApplication(publicAppWrapper, isPublished);
|
||||
} catch (BadRequestException e) {
|
||||
@ -235,7 +235,7 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
@Path("/custom-app")
|
||||
public Response createCustomApp(
|
||||
CustomAppWrapper customAppWrapper, @QueryParam("is-published") boolean isPublished) {
|
||||
CustomAppWrapper customAppWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||
try {
|
||||
return createApplication(customAppWrapper, isPublished);
|
||||
} catch (BadRequestException e) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user