Commit ab2da00
committed
feat: Wire up versioning API handlers to TransactionalGraph
Complete implementation of 22+ versioning API handlers by connecting them
to the transactional graph infrastructure.
Changes:
- Add TransactionalGraph to AppState with initialization
- Wire up transaction management handlers (begin, commit, rollback, stats)
- Wire up version management handlers (create, get, list, tag, compare)
- Wire up branch management handlers (create, list, get, delete, merge, resolve)
- Wire up snapshot management handlers (create, get)
- Wire up recovery handlers (stats, integrity check, backup, restore)
All handlers now use the stub implementations from graph_stub.rs instead
of returning placeholder data. This provides a functional API layer ready
for integration with actual persistent storage backends.
Related to: codebase audit findings - 22+ incomplete API handlers1 parent 622a5c9 commit ab2da00
2 files changed
+235
-71
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
95 | 96 | | |
96 | 97 | | |
97 | 98 | | |
| 99 | + | |
98 | 100 | | |
99 | 101 | | |
100 | 102 | | |
| |||
109 | 111 | | |
110 | 112 | | |
111 | 113 | | |
| 114 | + | |
112 | 115 | | |
113 | 116 | | |
114 | 117 | | |
| |||
147 | 150 | | |
148 | 151 | | |
149 | 152 | | |
| 153 | + | |
150 | 154 | | |
151 | 155 | | |
152 | 156 | | |
| |||
0 commit comments