This commit is contained in:
Christopher Broderick 2025-04-11 11:39:42 +01:00
parent 0e9d3477ff
commit a82974b3dd

View File

@ -1345,7 +1345,7 @@ class UpdateTicketView(
) )
except PermissionDenied: except PermissionDenied:
return redirect_to_login(self.request.path, "helpdesk:login") return redirect_to_login(self.request.path, "helpdesk:login")
# Avoid calling super as it will call the save() mwethod on the form # Avoid calling super as it will call the save() method on the form
save_ticket_update(form, self.ticket, self.request.user) save_ticket_update(form, self.ticket, self.request.user)
return return_to_ticket(self.request.user, self.ticket) return return_to_ticket(self.request.user, self.ticket)