If you can get to rails then you can do something like
/var/discourse/launcher enter app
rails c
c=Category.find(123)
c.name='safe name'
c.save
You’ll need to type a q to get out of the viewer after the find. 123 is the category I’d.
If you can get to rails then you can do something like
/var/discourse/launcher enter app
rails c
c=Category.find(123)
c.name='safe name'
c.save
You’ll need to type a q to get out of the viewer after the find. 123 is the category I’d.