Compare commits

..

1 Commits

Author SHA1 Message Date
Frédéric Péters 22f981d83e general: add journal app (#86632)
gitea/chrono/pipeline/head There was a failure building this commit Details
2024-04-23 16:06:08 +02:00
1 changed files with 6 additions and 11 deletions

View File

@ -2494,8 +2494,7 @@ class MultipleAgendasEventsCheckLock(APIView):
request=request,
agenda=event.agenda,
extra_data={
'event': str(event),
'event_id': event.id,
'event': event,
},
)
@ -2534,8 +2533,7 @@ class MultipleAgendasEventsInvoiced(APIView):
request=request,
agenda=event.agenda,
extra_data={
'event': str(event),
'event_id': event.id,
'event': event,
},
)
@ -3035,8 +3033,7 @@ class AcceptBooking(APIView):
agenda=event.agenda,
extra_data={
'booking_id': booking.id,
'event': str(event),
'event_id': event.id,
'event': event,
},
)
@ -3077,9 +3074,8 @@ class SuspendBooking(APIView):
request=request,
agenda=event.agenda,
extra_data={
'booking_id': booking.id,
'event': str(event),
'event_id': event.id,
'booking': booking,
'event': event,
},
)
@ -3426,8 +3422,7 @@ class EventCheck(APIView):
request=request,
agenda=event.agenda,
extra_data={
'event': str(event),
'event_id': event.id,
'event': event,
},
)
event.async_notify_checked()