aboutsummaryrefslogtreecommitdiff
path: root/crates/vcs_actions/src/actions.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add sheet restoration and drop functionality魏曹先生2025-11-051-0/+9
| | | | | | | - Add write_and_return macro for common result handling pattern - Extend make_sheet_action to restore sheets with no holder - Implement drop_sheet_action for releasing sheet ownership - Register new drop_sheet_action in client and server registries
* Change auth_member to return MemberId on success魏曹先生2025-10-301-6/+6
| | | | | | The authentication function now returns the authenticated member's ID instead of just () when successful. This provides callers with access to the authenticated member's identity for subsequent operations.
* Update actions.rs魏曹先生2025-10-291-0/+113
|
* Create vcs_actions crate for client-server interaction logic魏曹先生2025-10-061-0/+5
- Add new crate to combine action_system and vcs_data functionality - Define dependencies on both action_system and vcs_data crates - Prepare structure for implementing client-server communication logic