New field added for works to store gradation repository
Some checks are pending
continuous-integration/drone/push Build is running
Some checks are pending
continuous-integration/drone/push Build is running
This commit is contained in:
parent
e8d34869cc
commit
6def3de983
7 changed files with 97 additions and 10 deletions
|
|
@ -6,7 +6,7 @@ export class Work {
|
|||
}
|
||||
}
|
||||
|
||||
update({ id, id_category, title, promo, group, shown, tag, description, descr_raw, submission_url, corrected, start_availability, end_availability }) {
|
||||
update({ id, id_category, title, promo, group, shown, tag, description, descr_raw, submission_url, gradation_repo, corrected, start_availability, end_availability }) {
|
||||
this.id = id;
|
||||
this.id_category = id_category;
|
||||
this.title = title;
|
||||
|
|
@ -17,6 +17,7 @@ export class Work {
|
|||
this.description = description;
|
||||
this.descr_raw = descr_raw;
|
||||
this.submission_url = submission_url;
|
||||
this.gradation_repo = gradation_repo;
|
||||
this.corrected = corrected;
|
||||
if (this.start_availability != start_availability) {
|
||||
this.start_availability = start_availability;
|
||||
|
|
|
|||
Reference in a new issue