Fix forum management route

This commit is contained in:
DariusIII
2026-02-08 19:13:56 +01:00
parent 83cae97848
commit 5e35de66de
@@ -84,7 +84,7 @@
state.changesApplied = false;
var payload = { categories: state.categories };
axios.post('{{ route('forum.bulk.category.manage') }}', payload)
axios.post('{{ route('forum.bulk.category.reorder') }}', payload)
.then(response => {
state.changesApplied = true;
setTimeout(() => state.changesApplied = false, 3000);