run webhook when updating checkin comment or visibility

This commit is contained in:
Derf Null 2023-06-18 08:38:55 +02:00
parent 57afb8c748
commit a249be1d8b
No known key found for this signature in database
GPG key ID: 19E6E524EBB177BA
2 changed files with 5 additions and 2 deletions

View file

@ -1569,6 +1569,7 @@ sub visibility_form {
visibility => $self->param('status_level'),
);
$self->redirect_to('/');
$self->run_hook( $uid, 'update' );
}
elsif ($journey_id) {
$self->journeys->update_visibility(
@ -1651,11 +1652,13 @@ sub comment_form {
}
else {
$self->app->log->debug("set comment");
my $uid = $self->current_user->{id};
$self->in_transit->update_user_data(
uid => $self->current_user->{id},
uid => $uid,
user_data => { comment => $self->param('comment') }
);
$self->redirect_to('/');
$self->run_hook( $uid, 'update' );
}
}

View file

@ -89,7 +89,7 @@
<ul>
<li><b>ping</b> (nach jeder gespeicherten Änderung in diesem Formular)</li>
<li><b>checkin</b> (in einen Zug eingecheckt Zielstation ist noch nicht bekannt)</li>
<li><b>update</b> (eingecheckt und Ziel gewählt oder geändert)</li>
<li><b>update</b> (eingecheckt und Ziel/Kommentar/Sichtbarkeit geändert)</li>
<li><b>checkout</b> (aus einem Zug ausgecheckt)</li>
<li><b>undo</b> (checkin oder checkout wurde rückgängig gemacht)</li>
</ul>