feat: gist & co-authors

This commit is contained in:
tdurieux
2026-05-04 13:10:44 +02:00
parent f0f6436370
commit f0bc53f093
24 changed files with 1707 additions and 158 deletions
+9
View File
@@ -520,6 +520,10 @@ export default class Repository {
return this._model.options;
}
get coauthors() {
return this._model.coauthors || [];
}
get model() {
return this._model;
}
@@ -537,6 +541,11 @@ export default class Repository {
return {
repoId: this._model.repoId,
options: this._model.options,
coauthors: (this._model.coauthors || []).map((c) => ({
username: c.username,
githubId: c.githubId,
photo: c.photo,
})),
conference: this._model.conference,
anonymizeDate: this._model.anonymizeDate,
status: this.status,