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)
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
@Path("/ent-app")
|
@Path("/ent-app")
|
||||||
public Response createEntApp(
|
public Response createEntApp(
|
||||||
ApplicationWrapper applicationWrapper, @QueryParam("is-published") boolean isPublished) {
|
ApplicationWrapper applicationWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||||
try {
|
try {
|
||||||
return createApplication(applicationWrapper, isPublished);
|
return createApplication(applicationWrapper, isPublished);
|
||||||
} catch (BadRequestException e) {
|
} catch (BadRequestException e) {
|
||||||
@ -191,7 +191,7 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
|||||||
@Consumes(MediaType.APPLICATION_JSON)
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
@Path("/web-app")
|
@Path("/web-app")
|
||||||
public Response createWebApp(
|
public Response createWebApp(
|
||||||
WebAppWrapper webAppWrapper, @QueryParam("is-published") boolean isPublished) {
|
WebAppWrapper webAppWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||||
try {
|
try {
|
||||||
return createApplication(webAppWrapper, isPublished);
|
return createApplication(webAppWrapper, isPublished);
|
||||||
} catch (BadRequestException e) {
|
} catch (BadRequestException e) {
|
||||||
@ -213,7 +213,7 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
|||||||
@Consumes(MediaType.APPLICATION_JSON)
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
@Path("/public-app")
|
@Path("/public-app")
|
||||||
public Response createPubApp(
|
public Response createPubApp(
|
||||||
PublicAppWrapper publicAppWrapper, @QueryParam("is-published") boolean isPublished) {
|
PublicAppWrapper publicAppWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||||
try {
|
try {
|
||||||
return createApplication(publicAppWrapper, isPublished);
|
return createApplication(publicAppWrapper, isPublished);
|
||||||
} catch (BadRequestException e) {
|
} catch (BadRequestException e) {
|
||||||
@ -235,7 +235,7 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
|||||||
@Consumes(MediaType.APPLICATION_JSON)
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
@Path("/custom-app")
|
@Path("/custom-app")
|
||||||
public Response createCustomApp(
|
public Response createCustomApp(
|
||||||
CustomAppWrapper customAppWrapper, @QueryParam("is-published") boolean isPublished) {
|
CustomAppWrapper customAppWrapper, @QueryParam("isPublished") boolean isPublished) {
|
||||||
try {
|
try {
|
||||||
return createApplication(customAppWrapper, isPublished);
|
return createApplication(customAppWrapper, isPublished);
|
||||||
} catch (BadRequestException e) {
|
} catch (BadRequestException e) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user