Skip to content

Commit

Permalink
add version to api
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulBredl committed Jun 7, 2024
1 parent b4806f0 commit 87ccdf7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ repositories {
}

dependencies {
implementation 'de.unistuttgart.iste.meitrex:meitrex-common:1.0.5'
implementation 'de.unistuttgart.iste.meitrex:gamification_engine:1.0.5a'
implementation 'de.unistuttgart.iste.meitrex:meitrex-common:1.0.6'
implementation 'de.unistuttgart.iste.meitrex:gamification_engine:1.0.6'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-graphql'
implementation 'org.springframework.boot:spring-boot-starter-validation'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ public interface ImsConnector {
*/
List<CreateEventInput> getEventsForIssue(String issueId, OffsetDateTime since);

/**
* Retrieves a list of events that have occurred in the ims project for a specific project.
* Returns only events that have occurred since the given timestamp.
* The events are CreateEventInputs, which are used to create events in the Scrum game.
*
* @param projectId The ID of the project.
* @param since The timestamp to retrieve events since.
* @return A list of create event inputs.
*/
List<CreateEventInput> getEventsForProject(UUID projectId, OffsetDateTime since);

/**
* Changes the title of an issue.
*
Expand Down

0 comments on commit 87ccdf7

Please sign in to comment.