Echo the URL after creating the feed

This commit is contained in:
Lewis Dale 2024-09-26 07:48:59 +01:00
parent e5e9cd91b0
commit 4302fb9e8e

View File

@ -66,6 +66,9 @@ class TestFeed extends Command
$this->em->persist($feed); $this->em->persist($feed);
$this->em->flush(); $this->em->flush();
$output->writeln("Feed created!");
$output->writeln("Access your feed at /feed/$feed->id");
return Command::SUCCESS; return Command::SUCCESS;
} }
} }