Update for V2.0 #27

Merged
ryan merged 80 commits from 1.3 into main 2026-06-21 20:46:16 -04:00
Showing only changes of commit 7ee5437f8a - Show all commits
+4
View File
@@ -144,6 +144,10 @@ class IngestReferenceCommand extends Command
$ref->setContent($md); $ref->setContent($md);
$ref->setName($this->name); $ref->setName($this->name);
$ref->setType($this->type); $ref->setType($this->type);
if ($this->type == 'cd') {
$label = substr(basename($file), 0, -3);
}
$ref->setLabel($label); $ref->setLabel($label);
$this->io->success("Ingested {$this->name} as {$this->type}:{$label}"); $this->io->success("Ingested {$this->name} as {$this->type}:{$label}");