load Custom Link Web Page

@GetMapping(path = "/{" + LINK_IDENTIFIER_KEY + "}" )
open fun loadCustomLinkWebPage(    model: Model,     request: HttpServletRequest,     @PathVariable(value = "link_id") linkId: String,     @RequestParam(name = "preview_token", required = false) previewToken: String): String

Method to get a list of custom links

Return

the correct webpage to display title as String

Parameters

model

The model used by Thymeleaf to format the web page

request

The http request useful to get whether language the user is using to format properly the page language

linkId

The custom link requested

previewToken

The token, if set, to access to the page in preview mode (owner's feature)