Heya. I'm just getting started with NodeBB and am enjoying my experience thus far, I find it very customisable and am enjoying slowly making my own theme as part of a learning curve. I was wondering if it was possible to remove the category and topic names from the urls and just rely entirely on their IDs. I'm no stranger to working with JS, so if some of that is required, just some pointers would do!
Example:
https://YourUrl.com/category/3/nodebb-development
becomes
https://YourUrl.com/category/3/
and
https://YourUrl.com/topic/2/very-long-test-thread-name-you-get-the-idea
becomes
https://YourUrl.com/topic/2/
I obviously know that you can just crop out the text from the url manually, and it will still send you to the right place, I was just wanting to remove that step so that any user visiting the page would just see the shortened versions, not the really long text filled urls.
Thanks in advance.