@ResponseBody
public JsonResponse getQuote(@PathVariable(POST_ID) Long postId,
@RequestParam("selection") String selection) throws NotFoundException {
Post source = postService.get(postId);
String content = StringUtils.defaultString(selection, source.getPostContent());
return new JsonResponse(JsonResponseStatus.SUCCESS, bbCodeService.quote(content, source.getUserCreated()));
}