fix: add missing CreatedBy in RPC path

created_by was recently added in https://github.com/steveyegge/beads/commit/c3ef1c3f382ac2485a9b793051a291937b4ed37c but was missing support for passing in the CreatedBy through the RPC path so a create that was using the daemon was never having the created_by field set.
This commit is contained in:
Zachary Rosen
2025-12-26 20:38:14 -05:00
parent 2c7d34a4c3
commit f6eeb170ef
4 changed files with 49 additions and 2 deletions
+1
View File
@@ -223,6 +223,7 @@ var createCmd = &cobra.Command{
WaitsFor: waitsFor,
WaitsForGate: waitsForGate,
Wisp: wisp,
CreatedBy: getActorWithGit(),
}
resp, err := daemonClient.Create(createArgs)