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

Plagiarism checks: Use file extensions for plagiarism view #9350

Merged
merged 7 commits into from
Oct 12, 2024

Conversation

magaupp
Copy link
Contributor

@magaupp magaupp commented Sep 21, 2024

Checklist

General

Server

Client

  • Important: I implemented the changes with a very good performance, prevented too many (unnecessary) REST calls and made sure the UI is responsive, even with large data (e.g. using paging).
  • I strictly followed the principle of data economy for all client-server REST calls.
  • I strictly followed the client coding and design guidelines.
  • I adapted integration tests (Jest) related to the features (with a high test coverage), while following the test guidelines.
  • I documented the TypeScript code using JSDoc style.

Changes affecting Programming Exercises

  • High priority: I tested all changes and their related features with all corresponding user types on a test server configured with the integrated lifecycle setup (LocalVC and LocalCI).
  • I tested all changes and their related features with all corresponding user types on a test server configured with Gitlab and Jenkins.

Motivation and Context

The detection of binary files involves Java's Files.probeContentType() where the results are sometimes guessed from the filename. The results can not reliably detect source code files.

Description

This PR the list of file extensions used by the code editor for the detection of binary files. This also makes one REST call unnecessary.

Steps for Testing

Prerequisites:

  • 1 Programming Exercise with supported plagiarism checks
  • 2 identical submissions with text and binary files named accordingly
  1. Run the plagiarism checks on the exercise
  2. Select the resulting plagiarism case
  3. Select a text file
  4. Verify that the file's contents are shown
  5. Select a binary file
  6. Verify that Binary file not rendered. is shown

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

Test Coverage

Screenshots

Summary by CodeRabbit

Release Notes

  • New Features

    • Introduced a new constant for text file extensions to enhance file type handling.
  • Bug Fixes

    • Simplified logic for determining file types in the Text Submission Viewer component.
  • Refactor

    • Renamed constants related to file extensions for clarity and consistency across components.
    • Removed unused methods for fetching file types and headers, streamlining the codebase.
  • Tests

    • Updated test cases for the Text Submission Viewer component to reflect changes in file handling logic.

@magaupp magaupp requested a review from a team as a code owner September 21, 2024 16:01
@github-actions github-actions bot added tests server Pull requests that update Java code. (Added Automatically!) client Pull requests that update TypeScript code. (Added Automatically!) labels Sep 21, 2024
Copy link

coderabbitai bot commented Sep 21, 2024

Walkthrough

The changes involve the removal and renaming of several constants and methods across various components and services within the application. Key modifications include the elimination of the getFileType method in the RepositoryService, the removal of the supported-file-extensions.ts file, and updates to file extension constants to clarify their purpose related to uploads. Additionally, the logic for determining file types in the TextSubmissionViewerComponent has been simplified, and corresponding tests have been adjusted to reflect these changes.

Changes

File Path Change Summary
src/main/java/de/tum/cit/aet/artemis/programming/service/RepositoryService.java Removed getFileType method, eliminating MIME type retrieval functionality.
src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/code-editor-file-browser.component.ts Replaced supportedTextFileExtensions with TEXT_FILE_EXTENSIONS in shouldDisplayFileBasedOnExtension method.
src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/supported-file-extensions.ts Completely removed file, eliminating the supportedTextFileExtensions constant.
src/main/webapp/app/exercises/programming/shared/code-editor/service/code-editor-repository.service.ts Removed getFileHeaders method, which fetched HTTP headers for files.
src/main/webapp/app/exercises/shared/plagiarism/plagiarism-split-view/text-submission-viewer/text-submission-viewer.component.ts Simplified file type determination logic by checking against TEXT_FILE_EXTENSIONS instead of using HTTP headers.
src/main/webapp/app/lecture/lecture-attachments.component.ts Updated allowedFileExtensions and acceptedFileExtensionsFileBrowser to use UPLOAD_FILE_EXTENSIONS instead of FILE_EXTENSIONS.
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts Updated allowedFileExtensions and acceptedFileExtensionsFileBrowser to use UPLOAD_FILE_EXTENSIONS instead of FILE_EXTENSIONS.
src/main/webapp/app/lecture/lecture-update.component.ts Updated allowedFileExtensions and acceptedFileExtensionsFileBrowser to use UPLOAD_FILE_EXTENSIONS instead of FILE_EXTENSIONS.
src/main/webapp/app/shared/constants/file-extensions.constants.ts Renamed constants for clarity and added TEXT_FILE_EXTENSIONS constant.
src/main/webapp/app/shared/http/file-uploader.service.ts Updated acceptedMarkdownFileExtensions to reference UPLOAD_MARKDOWN_FILE_EXTENSIONS instead of MARKDOWN_FILE_EXTENSIONS.
src/test/javascript/spec/component/plagiarism/text-submission-viewer.component.spec.ts Adjusted tests by removing HTTP header imports and mocking, focusing on file type handling with new file entries.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant TextSubmissionViewerComponent
    participant FileService

    User->>TextSubmissionViewerComponent: Request file for plagiarism view
    TextSubmissionViewerComponent->>FileService: Check file extension
    alt If text file
        FileService-->>TextSubmissionViewerComponent: Fetch file content
    else If binary file
        TextSubmissionViewerComponent-->>User: Mark as binary
    end
Loading

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 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: 5

Review details

Configuration used: .coderabbit.yaml
Review profile: ASSERTIVE

Commits

Files that changed from the base of the PR and between 0354197 and 1de045a.

Files selected for processing (11)
  • src/main/java/de/tum/cit/aet/artemis/programming/service/RepositoryService.java (0 hunks)
  • src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/code-editor-file-browser.component.ts (2 hunks)
  • src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/supported-file-extensions.ts (0 hunks)
  • src/main/webapp/app/exercises/programming/shared/code-editor/service/code-editor-repository.service.ts (0 hunks)
  • src/main/webapp/app/exercises/shared/plagiarism/plagiarism-split-view/text-submission-viewer/text-submission-viewer.component.ts (2 hunks)
  • src/main/webapp/app/lecture/lecture-attachments.component.ts (2 hunks)
  • src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (2 hunks)
  • src/main/webapp/app/lecture/lecture-update.component.ts (2 hunks)
  • src/main/webapp/app/shared/constants/file-extensions.constants.ts (2 hunks)
  • src/main/webapp/app/shared/http/file-uploader.service.ts (2 hunks)
  • src/test/javascript/spec/component/plagiarism/text-submission-viewer.component.spec.ts (2 hunks)
Files not reviewed due to no reviewable changes (3)
  • src/main/java/de/tum/cit/aet/artemis/programming/service/RepositoryService.java
  • src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/supported-file-extensions.ts
  • src/main/webapp/app/exercises/programming/shared/code-editor/service/code-editor-repository.service.ts
Additional context used
Path-based instructions (8)
src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/code-editor-file-browser.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/exercises/shared/plagiarism/plagiarism-split-view/text-submission-viewer/text-submission-viewer.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/lecture/lecture-attachments.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/lecture/lecture-update.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/shared/constants/file-extensions.constants.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/shared/http/file-uploader.service.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/test/javascript/spec/component/plagiarism/text-submission-viewer.component.spec.ts (1)

Pattern src/test/javascript/spec/**/*.ts: jest: true; mock: NgMocks; bad_practices: avoid_full_module_import; perf_improvements: mock_irrelevant_deps; service_testing: mock_http_for_logic; no_schema: avoid_NO_ERRORS_SCHEMA; expectation_specificity: true; solutions: {boolean: toBeTrue/False, reference: toBe, existence: toBeNull/NotNull, undefined: toBeUndefined, class_obj: toContainEntries/toEqual, spy_calls: {not_called: not.toHaveBeenCalled, once: toHaveBeenCalledOnce, with_value: toHaveBeenCalledWith|toHaveBeenCalledExactlyOnceWith}}

Biome
src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/code-editor-file-browser.component.ts

[error] 585-585: Forbidden non-null assertion.

(lint/style/noNonNullAssertion)

src/main/webapp/app/exercises/shared/plagiarism/plagiarism-split-view/text-submission-viewer/text-submission-viewer.component.ts

[error] 178-178: Forbidden non-null assertion.

(lint/style/noNonNullAssertion)

src/main/webapp/app/lecture/lecture-attachments.component.ts

[error] 39-39: Template literals are preferred over string concatenation.

Unsafe fix: Use a template literal.

(lint/style/useTemplate)

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts

[error] 44-44: Template literals are preferred over string concatenation.

Unsafe fix: Use a template literal.

(lint/style/useTemplate)

src/main/webapp/app/lecture/lecture-update.component.ts

[error] 51-51: Template literals are preferred over string concatenation.

Unsafe fix: Use a template literal.

(lint/style/useTemplate)

Additional comments not posted (30)
src/main/webapp/app/shared/http/file-uploader.service.ts (2)

5-5: LGTM!

The import statement has been correctly updated to reflect the renaming of the constant. The new name UPLOAD_MARKDOWN_FILE_EXTENSIONS provides more clarity about its purpose related to uploads.


17-17: LGTM!

The acceptedMarkdownFileExtensions property has been correctly updated to reference the renamed UPLOAD_MARKDOWN_FILE_EXTENSIONS constant. This change is consistent with the renaming of the constant and ensures that the property uses the correct value.

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (1)

6-6: LGTM!

The import statement has been correctly updated to use the UPLOAD_FILE_EXTENSIONS constant, which aligns with the PR objective.

src/main/webapp/app/shared/constants/file-extensions.constants.ts (4)

4-6: LGTM!

The renaming of the constant and the updated comment improve clarity and reflect the change in the server-side definition source. The changes adhere to the coding guidelines.


11-13: LGTM!

The renaming of the constant and the updated comment improve clarity and reflect the change in the server-side definition source. The changes adhere to the coding guidelines.


48-344: LGTM!

The addition of the TEXT_FILE_EXTENSIONS constant provides a clear distinction between file extensions allowed for uploads and those readable in a file editor. The comment provides clear guidelines on the format and interpretation of the file extensions, and the list is comprehensive. The changes adhere to the coding guidelines.


Line range hint 1-344: Overall approval

The changes in this file improve clarity, reflect updates in the server-side definitions, and introduce a new category for text file extensions. The constants are well-documented and adhere to the coding guidelines. The file serves a clear purpose, and the changes enhance its functionality and maintainability. No additional issues or concerns were identified during the review.

src/main/webapp/app/lecture/lecture-update.component.ts (2)

15-15: LGTM!

The import statement change clarifies the purpose of the file extensions related to uploads.


49-49: LGTM!

The allowedFileExtensions property update is consistent with the import statement change and clarifies the purpose of the allowed file extensions.

src/main/webapp/app/lecture/lecture-attachments.component.ts (2)

12-12: LGTM!

The import statement change clarifies the purpose of the constant.


37-37: LGTM!

The property update is consistent with the updated import statement.

src/main/webapp/app/exercises/shared/plagiarism/plagiarism-split-view/text-submission-viewer/text-submission-viewer.component.ts (4)

14-14: LGTM!

The import statement follows the correct syntax and naming conventions. The purpose of the imported constant is clear.


178-195: The file type determination logic looks good!

The code correctly determines if the selected file is a text file by checking its extension against the predefined TEXT_FILE_EXTENSIONS constant. Fetching the file content only for text files is a good optimization. The binaryFile and loading flags are set appropriately to provide a good user experience.

Tools
Biome

[error] 178-178: Forbidden non-null assertion.

(lint/style/noNonNullAssertion)


182-191: File content fetching and processing looks good!

The code correctly uses the repositoryService to fetch the file content for text files. The fetched content is then processed by inserting match tokens. Appropriate error handling is in place to set the loading flag to false if there's an issue fetching the file.


192-195: Binary file handling looks good!

The code correctly handles the case when the selected file is not a text file. It marks the file as binary by setting binaryFile to true, which will help display an appropriate message to the user. Setting loading to false is also correct as no content is being loaded for binary files.

src/test/javascript/spec/component/plagiarism/text-submission-viewer.component.spec.ts (14)

Line range hint 48-58: LGTM!

The test case is correctly mocking the service method and verifying the expected behavior.


Line range hint 60-70: LGTM!

The test case is correctly mocking the service method and verifying the expected behavior.


Line range hint 72-80: LGTM!

The test case is correctly mocking the service method and verifying the expected behavior when hideContent is true.


Line range hint 82-91: LGTM!

The test case is correctly mocking the service method to throw an error and verifying the expected behavior.


Line range hint 93-125: LGTM!

The test case is correctly mocking the service method with an unordered file structure and verifying the expected behavior. It's correctly setting up the matches and verifying the expected sorting and filtering of files.


Line range hint 127-131: LGTM!

The test case is correctly verifying the expected behavior of the filterFiles method.


Line range hint 133-147: LGTM!

The test case is correctly mocking the service method and verifying the expected behavior of the handleFileSelect method.


Line range hint 149-163: LGTM!

The test case is correctly mocking the service method and verifying the expected behavior of the handleFileSelect method for a binary file.


Line range hint 165-191: LGTM!

The test case is correctly mocking the getMatchesForCurrentFile method and verifying the expected behavior of the insertMatchTokens method for exact matches.


Line range hint 193-219: LGTM!

The test case is correctly mocking the getMatchesForCurrentFile method and verifying the expected behavior of the insertMatchTokens method for full line matches.


Line range hint 221-230: LGTM!

The test case is correctly mocking the getMatchesForCurrentFile method and verifying the expected behavior of the insertMatchTokens method when no matches are present. It's correctly verifying that the HTML tags are escaped in the returned file content.


Line range hint 232-259: LGTM!

The test case is correctly mocking the getMatchesForCurrentFile method and verifying the expected behavior of the insertMatchTokens method for exact matches with HTML tags. It's correctly verifying that the matches are wrapped with the appropriate tags and the HTML tags are escaped in the returned file content.


Line range hint 261-288: LGTM!

The test case is correctly mocking the getMatchesForCurrentFile method and verifying the expected behavior of the insertMatchTokens method for full line matches with HTML tags. It's correctly verifying that the full lines with matches are wrapped with the appropriate tags and the HTML tags are escaped in the returned file content.


Line range hint 290-315: LGTM!

The test case is correctly mocking the getMatchesForCurrentFile method and verifying the expected behavior of the insertMatchTokens

src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/code-editor-file-browser.component.ts (1)

29-29: LGTM!

The import statement is valid and follows the coding guidelines. The change aligns with the PR objective of enhancing the detection of binary files during plagiarism checks by utilizing a list of file extensions.

coderabbitai[bot]
coderabbitai bot previously approved these changes Sep 21, 2024
JohannesStoehr
JohannesStoehr previously approved these changes Sep 22, 2024
Copy link
Contributor

@JohannesStoehr JohannesStoehr left a comment

Choose a reason for hiding this comment

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

Code

raffifasaro
raffifasaro previously approved these changes Sep 22, 2024
Copy link
Contributor

@raffifasaro raffifasaro left a comment

Choose a reason for hiding this comment

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

Code lgtm

ole-ve
ole-ve previously approved these changes Sep 23, 2024
Copy link
Contributor

@ole-ve ole-ve left a comment

Choose a reason for hiding this comment

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

Reviewed code, added one smaller suggestion (which I'm not sure about)

@github-actions github-actions bot added the programming Pull requests that affect the corresponding module label Sep 30, 2024
@krusche krusche modified the milestones: 7.5.6, 7.6.0 Oct 5, 2024
SimonEntholzer
SimonEntholzer previously approved these changes Oct 8, 2024
Copy link
Contributor

@SimonEntholzer SimonEntholzer left a comment

Choose a reason for hiding this comment

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

Code lgtm

…ions

# Conflicts:
#	src/main/webapp/app/exercises/programming/shared/code-editor/file-browser/supported-file-extensions.ts
Copy link
Contributor

@raffifasaro raffifasaro left a comment

Choose a reason for hiding this comment

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

re-approval

Copy link
Contributor

@ole-ve ole-ve left a comment

Choose a reason for hiding this comment

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

Code after last approval

@krusche krusche merged commit a893024 into develop Oct 12, 2024
36 of 39 checks passed
@krusche krusche deleted the feature/plagiarism-checks/use-file-extensions branch October 12, 2024 16:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client Pull requests that update TypeScript code. (Added Automatically!) programming Pull requests that affect the corresponding module ready for review server Pull requests that update Java code. (Added Automatically!) tests
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

6 participants