We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4812ae5 commit 05c1bf2Copy full SHA for 05c1bf2
src/main/resources/themes/history.view
@@ -300,8 +300,9 @@
300
window.deleteMeetingHistory = function(meetingCode) {
301
if (confirm('Are you sure you want to delete this meeting history? This action cannot be undone.')) {
302
$.ajax({
303
- url: '?q=api/history&meetingCode=' + meetingCode,
+ url: '?q=api/history',
304
type: 'DELETE',
305
+ data: { meetingCode: meetingCode },
306
success: function() {
307
alert('Meeting history deleted successfully');
308
loadMeetings(); // Reload the meetings list
0 commit comments