mirror of
https://github.com/usememos/memos.git
synced 2025-12-18 22:59:24 +08:00
- Remove standalone InboxService and move functionality to UserService - Rename inbox to user notifications for better API consistency - Add ListUserNotifications, UpdateUserNotification, DeleteUserNotification methods - Update frontend components to use new notification endpoints - Update store layer to support new notification model 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
346 B
Protocol Buffer
18 lines
346 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package memos.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
message InboxMessage {
|
|
// The type of the inbox message.
|
|
Type type = 1;
|
|
// The system-generated unique ID of related activity.
|
|
optional int32 activity_id = 2;
|
|
|
|
enum Type {
|
|
TYPE_UNSPECIFIED = 0;
|
|
// Memo comment notification.
|
|
MEMO_COMMENT = 1;
|
|
}
|
|
}
|