Details
-
Bug
-
Resolution: Fixed
-
Neutral
-
1.0, 1.1
-
None
-
None
-
-
Empty show more show less
-
Kromeriz 14
-
1
Description
Wrong code:
@DELETE
@Path("/store/{storeId}/loginidentity/@self")
@Produces("application/json")
public void logoutGuestUser(@PathParam("storeId") int storeId);
Should be:
@DELETE
@Path("/store/{storeId}/guestidentity/@self")
@Produces("application/json")
public void logoutGuestUser(@PathParam("storeId") int storeId);
Checklists
Acceptance criteria