feat: introduce feed management for individual and professor modules across frontend and backend services.

This commit is contained in:
Elmar Kresse
2025-11-22 21:20:41 +01:00
parent 34ad90d50d
commit ac6e1fe0dd
21 changed files with 1655 additions and 240 deletions

View File

@@ -13,6 +13,9 @@ message Feed {
string created = 4;
string updated = 5;
bool deleted = 6;
string type = 7; // "prof" or "student"
string user = 8; // User ID relation
string user_email = 9; // User Email for filtering
}
message GetFeedRequest {