Working webhook

This commit is contained in:
nemunaire 2022-09-05 12:20:33 +02:00
commit 7b45214ca9
6 changed files with 157 additions and 39 deletions

View file

@ -5,11 +5,12 @@ export class WorkRepository {
}
}
update({ id, id_user, id_work, uri, last_check }) {
update({ id, id_user, id_work, uri, secret, last_check }) {
this.id = id;
this.id_user = id_user;
this.id_work = id_work;
this.uri = uri;
this.secret = secret;
this.last_check = last_check;
}