Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iris: Allow team repository access for Iris #9975

Merged
merged 4 commits into from
Dec 10, 2024

Conversation

bassner
Copy link
Member

@bassner bassner commented Dec 9, 2024

Checklist

General

Server

  • Important: I implemented the changes with a very good performance and prevented too many (unnecessary) and too complex database calls.
  • I strictly followed the principle of data economy for all database calls.
  • I strictly followed the server coding and design guidelines.
  • I added multiple integration tests (Spring) related to the features (with a high test coverage).
  • I added pre-authorization annotations according to the guidelines and checked the course groups for all new REST Calls (security).
  • I documented the Java code using JavaDoc style.

Motivation and Context

Iris should be able to help on all programming exericses; however, it currently can't see the code of submissions in team exercises.

Description

Added compatibility with team exercises by checking wether the exercise is a team exercise, then altering the retrieval logic accordingly.

Steps for Testing

Prerequisites:

  • 1 Team Programming Exercise
  • 2 Students in a team within that exercise
  1. Submit something to the programming exercise
  2. Talk to your submitted code with Iris using both students accounts
  3. Verify that the student who did not submit can also talk to Iris about the code submitted by student 1

Testserver States

Note

These badges show the state of the test servers.
Green = Currently available, Red = Currently locked
Click on the badges to get to the test servers.







Review Progress

Performance Review

  • I (as a reviewer) confirm that the client changes (in particular related to REST calls and UI responsiveness) are implemented with a very good performance even for very large courses with more than 2000 students.
  • I (as a reviewer) confirm that the server changes (in particular related to database calls) are implemented with a very good performance even for very large courses with more than 2000 students.

Code Review

  • Code Review 1
  • Code Review 2

Manual Tests

  • Test 1
  • Test 2

Exam Mode Test

  • Test 1
  • Test 2

Performance Tests

  • Test 1
  • Test 2

Test Coverage

Class/File Line Coverage Confirmation (assert/expect)
IrisExerciseChatSessionService.java 93%
ProgrammingExerciseStudentParticipationRepository.java 80%

Summary by CodeRabbit

  • New Features

    • Enhanced retrieval of student participations for team exercises.
    • Added a method to fetch participations based on team and exercise ID.
    • New functionality to mock HTTP requests for programming exercise chat responses.
    • Introduced a method to get the first team exercise of a specified type.
  • Bug Fixes

    • Improved error handling and structure in integration tests for solo and team exercises.
  • Tests

    • Refactored integration tests to differentiate between solo and team exercises, enhancing clarity and organization.

@bassner bassner added this to the 7.7.5 milestone Dec 9, 2024
@bassner bassner self-assigned this Dec 9, 2024
@github-actions github-actions bot added tests server Pull requests that update Java code. (Added Automatically!) core Pull requests that affect the corresponding module exercise Pull requests that affect the corresponding module iris Pull requests that affect the corresponding module programming Pull requests that affect the corresponding module labels Dec 9, 2024
@bassner bassner temporarily deployed to artemis-test3.artemis.cit.tum.de December 9, 2024 17:13 — with GitHub Actions Inactive
@bassner bassner changed the title Iris: Allow team repo access for Iris Iris: Allow team repository access for Iris Dec 9, 2024
@bassner bassner marked this pull request as ready for review December 9, 2024 17:37
@bassner bassner requested a review from a team as a code owner December 9, 2024 17:37
Copy link

coderabbitai bot commented Dec 9, 2024

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 pmd (7.7.0)
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java

The following rules are missing or misspelled in your ruleset file category/vm/bestpractices.xml: BooleanInstantiation, DontImportJavaLang, DuplicateImports, EmptyFinallyBlock, EmptyIfStmt, EmptyInitializer, EmptyStatementBlock, EmptyStatementNotInLoop, EmptySwitchStatements, EmptySynchronizedBlock, EmptyTryBlock, EmptyWhileStmt, ExcessiveClassLength, ExcessiveMethodLength, ImportFromSamePackage, MissingBreakInSwitch, SimplifyBooleanAssertion. Please check your ruleset configuration.

Walkthrough

The changes introduced in this pull request enhance the functionality of the IrisExerciseChatSessionService and related classes to better handle student participations in team-based exercises. Key updates include the addition of a new method in the ProgrammingExerciseStudentParticipationRepository for retrieving participations based on team membership, modifications to the IrisExerciseChatSessionService to differentiate between team and solo exercise submissions, and enhancements in the ExerciseUtilService for filtering exercises by type. Additionally, test classes have been updated for improved testing of both solo and team exercises.

Changes

File Change Summary
src/main/java/de/tum/cit/aet/artemis/iris/service/session/IrisExerciseChatSessionService.java Enhanced getLatestSubmissionIfExists method to handle team exercises by adding a conditional structure that calls a new repository method for team-based submissions.
src/main/java/de/tum/cit/aet/artemis/programming/repository/ProgrammingExerciseStudentParticipationRepository.java Added new method findAllWithSubmissionByExerciseIdAndStudentLoginInTeam to retrieve participations based on exercise ID and student login for team exercises using JPQL with left joins.
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java Introduced mockProgrammingExerciseChatResponseExpectingSubmissionId method for enhanced HTTP request mocking, validating submission ID in requests.
src/test/java/de/tum/cit/aet/artemis/exercise/util/ExerciseUtilService.java Added method getFirstTeamExerciseWithType to retrieve team exercises, and updated getFirstExerciseWithType to exclude team exercises, enhancing filtering capabilities.
src/test/java/de/tum/cit/aet/artemis/iris/IrisChatMessageIntegrationTest.java Refactored test class to differentiate between solo and team exercises, added fields for participation, and split existing test methods to handle both exercise types separately.

Possibly related PRs

Suggested labels

bugfix

Suggested reviewers

  • kaancayli
  • Hialus
  • SimonEntholzer
  • krusche
  • dmytropolityka

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (4)
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (2)

103-133: Add JavaDoc documentation for the new method.

As per PR objectives mentioning JavaDoc style documentation, please add comprehensive JavaDoc for this method describing its purpose, parameters, and expected behavior.

+    /**
+     * Mocks a programming exercise chat response while validating the submission ID in the request.
+     *
+     * @param responseConsumer Consumer that processes the chat pipeline execution DTO
+     * @param submissionId Expected submission ID that should be present in the request
+     * @throws AssertionError if the submission ID is missing or doesn't match the expected value
+     */
     public void mockProgrammingExerciseChatResponseExpectingSubmissionId(...)

103-133: Consider extracting common response handling logic.

The response handling logic is duplicated between this method and mockProgrammingExerciseChatResponse. Consider extracting the common parts into a private helper method.

+    private void handleChatResponse(MockClientHttpRequest request, Consumer<PyrisExerciseChatPipelineExecutionDTO> responseConsumer) throws IOException {
+        var dto = mapper.readValue(request.getBodyAsString(), PyrisExerciseChatPipelineExecutionDTO.class);
+        responseConsumer.accept(dto);
+        return MockRestResponseCreators.withRawStatus(HttpStatus.ACCEPTED.value()).createResponse(request);
+    }

     public void mockProgrammingExerciseChatResponseExpectingSubmissionId(...) {
         mockServer
             .expect(...)
             .andExpect(...)
-            .andRespond(request -> {
-                var mockRequest = (MockClientHttpRequest) request;
-                var dto = mapper.readValue(mockRequest.getBodyAsString(), PyrisExerciseChatPipelineExecutionDTO.class);
-                responseConsumer.accept(dto);
-                return MockRestResponseCreators.withRawStatus(HttpStatus.ACCEPTED.value()).createResponse(request);
-            });
+            .andRespond(request -> handleChatResponse((MockClientHttpRequest) request, responseConsumer));
     }
src/test/java/de/tum/cit/aet/artemis/iris/IrisChatMessageIntegrationTest.java (1)

77-79: Consider using constructor injection instead of field injection for 'teamRepository'

While field injection is common in tests, using constructor injection for teamRepository can enhance test readability and promote better dependency management.

src/test/java/de/tum/cit/aet/artemis/exercise/util/ExerciseUtilService.java (1)

170-172: Consider clarifying the filter condition in 'getFirstExerciseWithType'

The added filter !ex.isTeamMode() excludes team exercises. Ensure that this method is intended to only retrieve solo exercises and that the documentation reflects this behavior.

Consider updating the method documentation:

- * Accesses the first found non-team exercise of a course with the passed type.
+ * Retrieves the first non-team exercise of a given type from the course.
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 390d00c and 6783ba4.

📒 Files selected for processing (5)
  • src/main/java/de/tum/cit/aet/artemis/iris/service/session/IrisExerciseChatSessionService.java (3 hunks)
  • src/main/java/de/tum/cit/aet/artemis/programming/repository/ProgrammingExerciseStudentParticipationRepository.java (1 hunks)
  • src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (1 hunks)
  • src/test/java/de/tum/cit/aet/artemis/exercise/util/ExerciseUtilService.java (1 hunks)
  • src/test/java/de/tum/cit/aet/artemis/iris/IrisChatMessageIntegrationTest.java (13 hunks)
🧰 Additional context used
📓 Path-based instructions (5)
src/main/java/de/tum/cit/aet/artemis/iris/service/session/IrisExerciseChatSessionService.java (1)

Pattern src/main/java/**/*.java: naming:CamelCase; principles:{single_responsibility,small_methods,no_duplication}; db:{perf_queries,datetime_not_timestamp}; rest:{stateless,singleton,delegate_logic,http_only,minimal_dtos}; dtos:{java_records,no_entities,min_data,single_resp}; di:constructor_injection; kiss:simple_code; file_handling:os_indep_paths; practices:{least_access,avoid_transactions,code_reuse,static_member_ref,prefer_primitives}; sql:{param_annotation,uppercase,avoid_subqueries};java:avoid_star_imports

src/main/java/de/tum/cit/aet/artemis/programming/repository/ProgrammingExerciseStudentParticipationRepository.java (1)

Pattern src/main/java/**/*.java: naming:CamelCase; principles:{single_responsibility,small_methods,no_duplication}; db:{perf_queries,datetime_not_timestamp}; rest:{stateless,singleton,delegate_logic,http_only,minimal_dtos}; dtos:{java_records,no_entities,min_data,single_resp}; di:constructor_injection; kiss:simple_code; file_handling:os_indep_paths; practices:{least_access,avoid_transactions,code_reuse,static_member_ref,prefer_primitives}; sql:{param_annotation,uppercase,avoid_subqueries};java:avoid_star_imports

src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (1)

Pattern src/test/java/**/*.java: test_naming: descriptive; test_size: small_specific; fixed_data: true; junit5_features: true; assert_use: assertThat; assert_specificity: true; archunit_use: enforce_package_rules; db_query_count_tests: track_performance; util_service_factory_pattern: true; avoid_db_access: true; mock_strategy: static_mocks; context_restart_minimize: true

src/test/java/de/tum/cit/aet/artemis/exercise/util/ExerciseUtilService.java (1)

Pattern src/test/java/**/*.java: test_naming: descriptive; test_size: small_specific; fixed_data: true; junit5_features: true; assert_use: assertThat; assert_specificity: true; archunit_use: enforce_package_rules; db_query_count_tests: track_performance; util_service_factory_pattern: true; avoid_db_access: true; mock_strategy: static_mocks; context_restart_minimize: true

src/test/java/de/tum/cit/aet/artemis/iris/IrisChatMessageIntegrationTest.java (1)

Pattern src/test/java/**/*.java: test_naming: descriptive; test_size: small_specific; fixed_data: true; junit5_features: true; assert_use: assertThat; assert_specificity: true; archunit_use: enforce_package_rules; db_query_count_tests: track_performance; util_service_factory_pattern: true; avoid_db_access: true; mock_strategy: static_mocks; context_restart_minimize: true

📓 Learnings (2)
src/main/java/de/tum/cit/aet/artemis/iris/service/session/IrisExerciseChatSessionService.java (3)
Learnt from: Hialus
PR: ls1intum/Artemis#8607
File: src/main/java/de/tum/in/www1/artemis/web/rest/programming/ProgrammingExerciseResource.java:64-64
Timestamp: 2024-11-12T12:51:51.201Z
Learning: For the Artemis project, import statements are automatically managed by formatters and should not be commented on.
Learnt from: julian-christl
PR: ls1intum/Artemis#9322
File: src/main/java/de/tum/cit/aet/artemis/programming/repository/ProgrammingExerciseStudentParticipationRepository.java:0-0
Timestamp: 2024-11-12T12:51:51.201Z
Learning: In Artemis, an `ExerciseGroup` always has an associated `Exam`, so `exerciseGroup.exam` is never null.
Learnt from: julian-christl
PR: ls1intum/Artemis#9322
File: src/main/java/de/tum/cit/aet/artemis/programming/repository/ProgrammingExerciseStudentParticipationRepository.java:170-172
Timestamp: 2024-11-12T12:51:46.554Z
Learning: In Artemis, `exercise.exerciseGroup` may be null, as not all exercises belong to an `ExerciseGroup`.
src/test/java/de/tum/cit/aet/artemis/iris/IrisChatMessageIntegrationTest.java (1)
Learnt from: alexjoham
PR: ls1intum/Artemis#9455
File: src/test/java/de/tum/cit/aet/artemis/iris/IrisTextExerciseChatMessageIntegrationTest.java:401-401
Timestamp: 2024-11-12T12:51:58.050Z
Learning: In the Artemis project, when new fields are added to classes like `PyrisChatStatusUpdateDTO`, corresponding tests may be implemented in separate integration test classes such as `IrisChatTokenTrackingIntegrationTest`.
🔇 Additional comments (7)
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (1)

103-133: Implementation looks good with suggested improvements.

The new method effectively validates the submission ID in mock responses, which aligns well with the PR objective of enabling team repository access. The implementation is consistent with the existing codebase and follows similar patterns.

src/test/java/de/tum/cit/aet/artemis/iris/IrisChatMessageIntegrationTest.java (3)

83-89: Fields for solo and team exercises are appropriately added

The addition of soloExercise, teamExercise, soloParticipation, and teamParticipation fields effectively supports testing for both solo and team exercises.


180-189: Refactored test methods enhance clarity and coverage

Splitting sendOneMessage into sendOneMessageNormalExercise and sendOneMessageTeamExercise improves test clarity and ensures that both exercise modes are thoroughly tested.


380-382: Proper role assignment in 'sendMessageRateLimitReached' test

Changing the mock user to student3 with the ADMIN role accurately reflects the required permissions for this test case, enhancing its validity.

src/main/java/de/tum/cit/aet/artemis/iris/service/session/IrisExerciseChatSessionService.java (1)

149-156: Ensure proper retrieval of team participations

The added conditional correctly differentiates between team and solo exercises when retrieving submissions. Make sure that this logic aligns with all possible exercise modes and that edge cases are handled.

src/main/java/de/tum/cit/aet/artemis/programming/repository/ProgrammingExerciseStudentParticipationRepository.java (1)

198-209: Method 'findAllWithSubmissionByExerciseIdAndStudentLoginInTeam' follows repository patterns

The new method adheres to the repository's query conventions and efficiently retrieves participations for team exercises.

src/test/java/de/tum/cit/aet/artemis/exercise/util/ExerciseUtilService.java (1)

174-183: Addition of 'getFirstTeamExerciseWithType' method enhances utility service

The new method getFirstTeamExerciseWithType effectively retrieves team exercises and complements the existing utility functions.

bassner and others added 2 commits December 9, 2024 18:57
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (2)
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (2)

104-134: Add JavaDoc documentation for the new method

The implementation looks good and properly validates the submission ID. However, as per PR objectives, please add JavaDoc documentation to describe the method's purpose, parameters, and behavior.

Add documentation like this:

+    /**
+     * Mocks a programming exercise chat response while validating the submission ID in the request.
+     *
+     * @param responseConsumer Consumer that processes the chat pipeline execution DTO
+     * @param submissionId Expected submission ID that should be present in the request
+     */
     public void mockProgrammingExerciseChatResponseExpectingSubmissionId(...)

104-134: Consider extracting validation logic for reusability

The JSON validation logic could be extracted into a separate method to improve readability and enable reuse by other mock methods.

Consider refactoring like this:

+    /**
+     * Validates that the request JSON contains a submission with the expected ID.
+     *
+     * @param jsonNode Request body as JsonNode
+     * @param expectedSubmissionId Expected submission ID
+     */
+    private void validateSubmissionId(JsonNode jsonNode, long expectedSubmissionId) {
+        assertThat(jsonNode.has("submission"))
+            .withFailMessage("Request body must contain a 'submission' field")
+            .isTrue();
+        assertThat(jsonNode.get("submission").isObject())
+            .withFailMessage("The 'submission' field must be an object")
+            .isTrue();
+        assertThat(jsonNode.get("submission").has("id"))
+            .withFailMessage("The 'submission' object must contain an 'id' field")
+            .isTrue();
+        assertThat(jsonNode.get("submission").get("id").asLong())
+            .withFailMessage("Submission ID in request (%d) does not match expected ID (%d)",
+                jsonNode.get("submission").get("id").asLong(), expectedSubmissionId)
+            .isEqualTo(expectedSubmissionId);
+    }

     public void mockProgrammingExerciseChatResponseExpectingSubmissionId(
         Consumer<PyrisExerciseChatPipelineExecutionDTO> responseConsumer, 
         long submissionId
     ) {
         mockServer
             .expect(ExpectedCount.once(), requestTo(pipelinesApiURL + "/tutor-chat/default/run"))
             .andExpect(method(HttpMethod.POST))
             .andExpect(request -> {
                 var mockRequest = (MockClientHttpRequest) request;
                 var jsonNode = mapper.readTree(mockRequest.getBodyAsString());
                 validateSubmissionId(jsonNode, submissionId);
             })
             .andRespond(request -> {
                 var mockRequest = (MockClientHttpRequest) request;
                 var dto = mapper.readValue(mockRequest.getBodyAsString(), PyrisExerciseChatPipelineExecutionDTO.class);
                 responseConsumer.accept(dto);
                 return MockRestResponseCreators.withRawStatus(HttpStatus.ACCEPTED.value()).createResponse(request);
             });
     }
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between e79b3f1 and 79c78e4.

📒 Files selected for processing (1)
  • src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (2 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (1)

Pattern src/test/java/**/*.java: test_naming: descriptive; test_size: small_specific; fixed_data: true; junit5_features: true; assert_use: assertThat; assert_specificity: true; archunit_use: enforce_package_rules; db_query_count_tests: track_performance; util_service_factory_pattern: true; avoid_db_access: true; mock_strategy: static_mocks; context_restart_minimize: true

🔇 Additional comments (1)
src/test/java/de/tum/cit/aet/artemis/core/connector/IrisRequestMockProvider.java (1)

4-4: LGTM: Import aligns with testing guidelines

The static import of assertThat from AssertJ follows the coding guidelines for test assertions.

Copy link

@HawKhiem HawKhiem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested on TS3. I created this exercise:

https://artemis-test3.artemis.cit.tum.de/courses/29/exercises/825

I created a team of Test User 1 and Test User 2.
I used Test User 1 to submit the code and talking to Iris works fine for Test User 1.
However when I switch to Test User 2 and tried to talk to Iris, it said that Iris is disabled for this exercise
Screenshot 2024-12-09 224556
Screenshot 2024-12-09 224727
Screenshot 2024-12-09 224743

@bassner
Copy link
Member Author

bassner commented Dec 10, 2024

I can not reproduce the issue above for test user 2.
CleanShot 2024-12-10 at 13 33 06@2x

@bassner bassner requested a review from HawKhiem December 10, 2024 12:33
Copy link

@isabellagessl isabellagessl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tested in test server 3

Copy link
Contributor

@sebastianloose sebastianloose left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on test-server-3. Works as expected

Copy link
Contributor

@kaancayli kaancayli left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS3 works as expected. Code LGTM

@bassner bassner merged commit b44dafa into develop Dec 10, 2024
49 of 53 checks passed
@bassner bassner deleted the feat/allow-iris-team-repo-access branch December 10, 2024 13:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Pull requests that affect the corresponding module exercise Pull requests that affect the corresponding module iris Pull requests that affect the corresponding module programming Pull requests that affect the corresponding module ready for review server Pull requests that update Java code. (Added Automatically!) tests
Projects
Status: Merged
Development

Successfully merging this pull request may close these issues.

5 participants