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

Communication: Allow users to mark all channels as read #9994

Merged
merged 22 commits into from
Dec 20, 2024

Conversation

cremertim
Copy link
Contributor

@cremertim cremertim commented Dec 10, 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 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).

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 client coding and design guidelines.
  • I added multiple integration tests (Jest) related to the features (with a high test coverage), while following the test guidelines.
  • I added authorities to all new routes and checked the course groups for displaying navigation elements (links, buttons).
  • I added multiple screenshots/screencasts of my UI changes.
  • I translated all newly inserted strings into English and German.

Motivation and Context

Currently, a user has to click at each channel to mark a channel as read. This becomes cumbersome during the lifecycle of a course

Description

I added abutton to resolve all channels via one click

Steps for Testing

Prerequisites:

  • 2 Users
  • 1 Course with communication enabled
  1. Log in to Artemis
  2. Write messages into more than one channel of the course
  3. Go to the other user
  4. Click on the +-button in the sidebar
  5. See new option and use it to resolve all messages
  6. Verify the UI is updated accordingly

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

Performance Tests

  • Test 1
  • Test 2

Test Coverage

image

Summary by CodeRabbit

  • New Features

    • Users can now mark all channels of a specified course as read directly from the sidebar.
    • A new button "Mark All Messages As Checked" has been added to the sidebar dropdown menu.
    • New translations for marking channels as read have been added for both English and German.
  • Bug Fixes

    • Enhanced functionality for marking all conversations as read for a user in a course context.
  • Tests

    • Added new test cases to verify the functionality of marking all channels as read across various components and services.

@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!) communication Pull requests that affect the corresponding module labels Dec 10, 2024
@cremertim cremertim changed the title Feature/communication/set all messages to read Communication: Mark All Channels as Read Dec 10, 2024
@cremertim cremertim marked this pull request as ready for review December 12, 2024 09:56
@cremertim cremertim requested a review from a team as a code owner December 12, 2024 09:56
Copy link

coderabbitai bot commented Dec 12, 2024

Walkthrough

This pull request introduces a feature that allows users to mark all channels associated with a specific course as read. The changes encompass backend services, resources, and frontend components, including new API endpoints, methods for managing read statuses, and UI elements for user interaction. Additionally, translations for the new functionality are provided to enhance the user experience across different languages.

Changes

File Path Change Summary
src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ChannelService.java Added markAllChannelsOfCourseAsRead method to mark all channels of a course as read
src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ConversationService.java Added markAllConversationOfAUserAsRead method to update conversation read status
src/main/java/de/tum/cit/aet/artemis/communication/web/conversation/ChannelResource.java Added REST endpoint {courseId}/channels/mark-as-read to handle marking channels as read
src/main/java/de/tum/cit/aet/artemis/communication/repository/conversation/ConversationRepository.java Added findAllByCourseId method to retrieve conversations for a course
src/main/webapp/app/overview/course-conversations/course-conversations.component.html Added event binding for marking channels as read
src/main/webapp/app/overview/course-conversations/course-conversations.component.ts Implemented markAllChannelAsRead method in the component
src/main/webapp/app/shared/metis/conversations/conversation.service.ts Added markAllChannelsAsRead method in conversation service
src/main/webapp/app/shared/metis/metis-conversation.service.ts Added markAllChannelsAsRead method in MetisConversationService
src/main/webapp/app/shared/sidebar/sidebar.component.html Added button for marking all messages as checked
src/main/webapp/app/shared/sidebar/sidebar.component.ts Added markAllMessagesAsChecked method and output event for marking channels as read
src/main/webapp/i18n/de/student-dashboard.json Added translation for "Mark all channels as read"
src/main/webapp/i18n/en/student-dashboard.json Added translation for "Mark all channels as read"
src/test/java/de/tum/cit/aet/artemis/communication/ChannelIntegrationTest.java Added integration test for markAllChannelsAsRead functionality
src/test/javascript/spec/component/overview/course-conversations/course-conversations.component.spec.ts Added test case for markAllChannelAsRead method
src/test/javascript/spec/component/overview/course-conversations/services/metis-conversation.service.spec.ts Added test case for markAllChannelsAsRead method in MetisConversationService

Possibly related PRs

Suggested labels

component:Communication, small

Suggested reviewers

  • JohannesStoehr
  • rabeatwork
  • az108
  • krusche
  • egekurt123
  • HawKhiem
  • FelberMartin

Tip

CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command @coderabbitai generate docstrings to have CodeRabbit automatically generate docstrings for your pull request.


📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 65bcb70 and ef89ab2.

📒 Files selected for processing (2)
  • src/main/webapp/app/shared/sidebar/sidebar.component.html (1 hunks)
  • src/main/webapp/app/shared/sidebar/sidebar.component.ts (4 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/main/webapp/app/shared/sidebar/sidebar.component.html
🧰 Additional context used
📓 Path-based instructions (1)
src/main/webapp/app/shared/sidebar/sidebar.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

🔇 Additional comments (2)
src/main/webapp/app/shared/sidebar/sidebar.component.ts (2)

2-2: LGTM: Icon changes are appropriate and well-structured.

The faCheckDouble icon is semantically appropriate for the "mark as read" action, and its implementation follows Angular style guidelines.

Also applies to: 65-65


201-203: 🛠️ Refactor suggestion

Add validation and documentation to the method.

The method should include validation checks and documentation to improve robustness and maintainability.

Apply these improvements:

+    /**
+     * Marks all channels as read for the current course.
+     * This triggers the onMarkAllChannelsAsRead event which is handled by the parent component.
+     */
     markAllMessagesAsChecked() {
+        // Validate that messaging is enabled and there are unread channels
+        if (!this.sidebarData?.messagingEnabled) {
+            return;
+        }
+
         this.onMarkAllChannelsAsRead.emit();
     }

Additionally, consider adding a loading state to prevent multiple rapid clicks during the operation, given the previous race condition issues mentioned in the PR comments.

Likely invalid or redundant comment.


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. (Beta)
  • @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: 9

🧹 Outside diff range and nitpick comments (3)
src/main/webapp/app/overview/course-conversations/course-conversations.component.html (1)

33-33: Fix naming inconsistency in event binding

The event handler method name markAllChannelAsRead (singular) doesn't match the event name onMarkAllChannelsAsRead (plural). Maintain consistency by using plural form throughout.

-(onMarkAllChannelsAsRead)="markAllChannelAsRead()"
+(onMarkAllChannelsAsRead)="markAllChannelsAsRead()"
src/main/webapp/app/shared/sidebar/sidebar.component.html (1)

48-51: Add aria-label for accessibility

The button should include an aria-label to improve accessibility for screen readers.

-<button (click)="markAllMessagesAsChecked()" class="p-2" ngbDropdownItem>
+<button (click)="markAllMessagesAsChecked()" class="p-2" ngbDropdownItem
+        [attr.aria-label]="'artemisApp.courseOverview.sidebar.setMessagesAsRead' | artemisTranslate">
src/main/java/de/tum/cit/aet/artemis/communication/web/conversation/ChannelResource.java (1)

499-509: Consider enhancing error handling for edge cases.

The implementation looks good and follows the established patterns in the codebase. However, consider adding explicit error handling for the case where no channels exist in the course.

 @PutMapping("{courseId}/channels/mark-as-read")
 @EnforceAtLeastStudent
 public ResponseEntity<ChannelDTO> markAllChannelsOfCourseAsRead(@PathVariable Long courseId) {
     log.debug("REST request to mark all channels of course {} as read", courseId);
     var requestingUser = userRepository.getUserWithGroupsAndAuthorities();
     var course = courseRepository.findByIdElseThrow(courseId);
     checkCommunicationEnabledElseThrow(course);
     authorizationCheckService.checkHasAtLeastRoleInCourseElseThrow(Role.STUDENT, course, requestingUser);
+    var channels = channelRepository.findChannelsByCourseId(courseId);
+    if (channels.isEmpty()) {
+        return ResponseEntity.noContent().build();
+    }
     channelService.markAllChannelsOfCourseAsRead(course, requestingUser);
     return ResponseEntity.ok().build();
 }
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between cc6c76d and 558106e.

📒 Files selected for processing (14)
  • src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ChannelService.java (1 hunks)
  • src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ConversationService.java (1 hunks)
  • src/main/java/de/tum/cit/aet/artemis/communication/web/conversation/ChannelResource.java (1 hunks)
  • src/main/webapp/app/overview/course-conversations/course-conversations.component.html (1 hunks)
  • src/main/webapp/app/overview/course-conversations/course-conversations.component.ts (1 hunks)
  • src/main/webapp/app/shared/metis/conversations/conversation.service.ts (1 hunks)
  • src/main/webapp/app/shared/metis/metis-conversation.service.ts (1 hunks)
  • src/main/webapp/app/shared/sidebar/sidebar.component.html (1 hunks)
  • src/main/webapp/app/shared/sidebar/sidebar.component.ts (4 hunks)
  • src/main/webapp/i18n/de/student-dashboard.json (1 hunks)
  • src/main/webapp/i18n/en/student-dashboard.json (1 hunks)
  • src/test/java/de/tum/cit/aet/artemis/communication/ChannelIntegrationTest.java (4 hunks)
  • src/test/javascript/spec/component/overview/course-conversations/course-conversations.component.spec.ts (1 hunks)
  • src/test/javascript/spec/component/overview/course-conversations/services/metis-conversation.service.spec.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (13)
src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ChannelService.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/webapp/i18n/de/student-dashboard.json (1)

Pattern src/main/webapp/i18n/de/**/*.json: German language translations should be informal (dutzen) and should never be formal (sietzen). So the user should always be addressed with "du/dein" and never with "sie/ihr".

src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ConversationService.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/webapp/app/shared/metis/metis-conversation.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/main/webapp/app/shared/sidebar/sidebar.component.html (1)

Pattern src/main/webapp/**/*.html: @if and @for are new and valid Angular syntax replacing *ngIf and *ngFor. They should always be used over the old style.

src/main/webapp/app/overview/course-conversations/course-conversations.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/overview/course-conversations/course-conversations.component.html (1)

Pattern src/main/webapp/**/*.html: @if and @for are new and valid Angular syntax replacing *ngIf and *ngFor. They should always be used over the old style.

src/test/javascript/spec/component/overview/course-conversations/services/metis-conversation.service.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}}

src/main/webapp/app/shared/metis/conversations/conversation.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/main/java/de/tum/cit/aet/artemis/communication/web/conversation/ChannelResource.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/communication/ChannelIntegrationTest.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/main/webapp/app/shared/sidebar/sidebar.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/test/javascript/spec/component/overview/course-conversations/course-conversations.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}}

🔇 Additional comments (7)
src/main/webapp/app/shared/sidebar/sidebar.component.ts (2)

31-31: LGTM! Output event declaration follows Angular patterns

The output event is correctly declared using the new output() syntax.


2-2: LGTM! Icon import is correctly organized

The faCheck icon is properly imported and grouped with other FontAwesome icons.

src/main/webapp/i18n/en/student-dashboard.json (1)

85-86: LGTM: Translation is clear and consistent.

The English translation is well-placed and follows the existing translation patterns.

src/main/webapp/i18n/de/student-dashboard.json (1)

85-86: LGTM: Translation follows German language guidelines.

The German translation correctly uses the informal form and maintains consistency with existing translations.

src/main/java/de/tum/cit/aet/artemis/communication/service/conversation/ConversationService.java (1)

447-455: LGTM! The implementation is efficient and handles edge cases.

The method correctly:

  1. Avoids unnecessary database updates when there are no unread messages
  2. Updates both the timestamp and unread count atomically
  3. Uses the existing getOrCreateConversationParticipant method for participant management
src/test/javascript/spec/component/overview/course-conversations/course-conversations.component.spec.ts (1)

583-589: LGTM! The test case is comprehensive.

The test effectively verifies:

  1. The correct invocation of markAllChannelsAsRead
  2. The subsequent refresh operations
  3. Uses proper Jest spying techniques for verification
src/test/java/de/tum/cit/aet/artemis/communication/ChannelIntegrationTest.java (1)

84-86: LGTM!

The field addition follows the established patterns and is properly annotated.

…ssages-to-read' into feature/communication/set-all-messages-to-read
coderabbitai[bot]
coderabbitai bot previously approved these changes Dec 12, 2024
Copy link

@sachmii sachmii 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 TS5, but nothing changed after pressing the button to mark all channels as read.

Before pressing button:
Bildschirmfoto 2024-12-12 um 11 39 59

After pressing button:
Bildschirmfoto 2024-12-12 um 11 34 48

Copy link
Contributor

@FelberMartin FelberMartin 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 TS1 and works now 👍

Copy link

@ahbitaqu ahbitaqu 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 TS1]
Takes a sec, but works now

Screen.Recording.2024-12-16.114044.mp4

Copy link
Contributor

@PaRangger PaRangger 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 great 😄

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.

Tested on TS2. Everything works as described

@krusche krusche changed the title Communication: Mark All Channels as read Communication: Allow users to mark all channels as read Dec 20, 2024
@krusche krusche added this to the 7.8.0 milestone Dec 20, 2024
@krusche krusche merged commit e13f336 into develop Dec 20, 2024
25 of 29 checks passed
@krusche krusche deleted the feature/communication/set-all-messages-to-read branch December 20, 2024 15:24
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!) communication Pull requests that affect the corresponding module feature ready to merge server Pull requests that update Java code. (Added Automatically!) tests
Projects
Status: Merged
Development

Successfully merging this pull request may close these issues.

Communication: Mark all notifications as read button
9 participants