After delete the user will now redirected to home page (#7072)

This commit is contained in:
Prashant Patil 2025-08-20 23:14:52 +05:30 committed by GitHub
parent 43ceda1bfd
commit 01abebdc1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,6 +86,8 @@ const padeditor = (() => {
$('#delete-pad').on('click', () => {
if (window.confirm(html10n.get('pad.delete.confirm'))) {
pad.collabClient.sendMessage({type: 'PAD_DELETE', data:{padId: pad.getPadId()}});
// redirect to home page after deletion
window.location.href = '/';
}
})