-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from msi-se/form-join-lobby-and-rework-live-fo…
…rm-page Monster Branch
- Loading branch information
Showing
53 changed files
with
3,745 additions
and
1,588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,9 @@ nb-configuration.xml | |
|
||
# Plugin directory | ||
/.quarkus/cli/plugins/ | ||
|
||
# Metals | ||
.metals/ | ||
|
||
# line counts | ||
.VSCodeCounter/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
public enum FormStatus { | ||
STARTED, | ||
FINISHED, | ||
NOT_STARTED | ||
NOT_STARTED, | ||
WAITING, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
backend/src/main/java/de/htwg_konstanz/mobilelearning/models/FormShell.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package de.htwg_konstanz.mobilelearning.models; | ||
|
||
import org.bson.types.ObjectId; | ||
|
||
import de.htwg_konstanz.mobilelearning.enums.FormStatus; | ||
|
||
public class FormShell extends Form { | ||
|
||
public String type; | ||
public String course; | ||
|
||
public FormShell() { } | ||
|
||
public FormShell(ObjectId id, ObjectId courseId, String name, String description, FormStatus status, Integer connectCode, String key, String type, String course) { | ||
this.id = id; | ||
this.courseId = courseId; | ||
this.name = name; | ||
this.description = description; | ||
this.status = status; | ||
this.connectCode = connectCode; | ||
this.key = key; | ||
this.type = type; | ||
this.course = course; | ||
} | ||
|
||
public String getType() { | ||
return this.type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public String getCourse() { | ||
return this.course; | ||
} | ||
|
||
public void setCourse(String course) { | ||
this.course = course; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...nd/src/main/java/de/htwg_konstanz/mobilelearning/models/feedback/FeedbackParticipant.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package de.htwg_konstanz.mobilelearning.models.feedback; | ||
|
||
import org.bson.types.ObjectId; | ||
|
||
public class FeedbackParticipant { | ||
|
||
public ObjectId userId; | ||
|
||
public FeedbackParticipant() { | ||
} | ||
|
||
public FeedbackParticipant(ObjectId userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public ObjectId getUserId() { | ||
return this.userId; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.