Hi!
The documentation says it’s possible to get specific post by its ID using the “get” helper:
{{#get "posts" id="2" include="tags,authors" as |post|}}
{{#post}}
{{title}}
{{/post}}
{{/get}}
Can I access the post ID in the redirects.json? I want to make it possible to use short links for posts. For example, if someone follows the link /id/185/, then this user should be redirected to the /actual-post-link/ (assuming that this post has ID 185).
Thanks!