- Backend: user_activity service (user_activity_log + project_activity)
- Backend: stars service (repo_star + project_follow)
- Backend: user_get_following_list (with is_following_me mutual check)
- Frontend: Tab navigation on /user/{username} with Overview/Activity/Following/Stars/Security
- Frontend: UserActivity timeline, FollowingList grid, StarsList, SecurityTab (SSH keys + PATs)
15 lines
257 B
Rust
15 lines
257 B
Rust
pub mod access_key;
|
|
pub mod avatar;
|
|
pub mod chpc;
|
|
pub mod notification;
|
|
pub mod notify;
|
|
pub mod preferences;
|
|
pub mod profile;
|
|
pub mod projects;
|
|
pub mod repository;
|
|
pub mod ssh_key;
|
|
pub mod stars;
|
|
pub mod subscribe;
|
|
pub mod user_activity;
|
|
pub mod user_info;
|