Skip to content

Commit

Permalink
Adds private value onto Project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Mar 20, 2024
1 parent 52c866b commit 9de04b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/structure/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ export class Project extends Svue {
description(project) {
return project.description;
},
private(project) {
return project.private;
},
editAccess(project) {
if (project.edit_access == null) return false;
return project.edit_access;
Expand Down

0 comments on commit 9de04b8

Please sign in to comment.