indicate that the method returns the id of the newly created feed (#1147)

This commit is contained in:
Athou
2023-09-08 07:07:29 +02:00
parent 06319c1eb0
commit df8c4056b6

View File

@@ -379,7 +379,7 @@ public class FeedREST {
@POST
@Path("/subscribe")
@UnitOfWork
@ApiOperation(value = "Subscribe to a feed", notes = "Subscribe to a feed")
@ApiOperation(value = "Subscribe to a feed", notes = "Subscribe to a feed", response = Long.class)
@Timed
public Response subscribe(@ApiParam(hidden = true) @SecurityCheck User user,
@Valid @ApiParam(value = "subscription request", required = true) SubscribeRequest req) {