fix: bugfix
All checks were successful
Format / formatting (push) Successful in 5s
Build / build (push) Successful in 27s
CI / build (push) Successful in 11s

This commit is contained in:
Pierre Tellier
2025-03-12 12:08:49 +01:00
parent 64da3c9ab0
commit 653f923693
5 changed files with 60 additions and 17 deletions

View File

@ -4,4 +4,22 @@ public class ProjectDecision {
public long projectId;
public long adminId;
public long isAccepted;
public ProjectDecision(long projectId, long adminId, long isAccepted) {
this.projectId = projectId;
this.adminId = adminId;
this.isAccepted = isAccepted;
}
@Override
public String toString() {
return "ProjectDecision{"
+ "projectId="
+ projectId
+ ", adminId="
+ adminId
+ ", isAccepted="
+ isAccepted
+ '}';
}
}

View File

@ -4,5 +4,6 @@ public enum ProjectDecisionValue {
PENDING,
ACTIVE,
ENDED,
ABORTED
ABORTED,
REJECTED,
}