Add reminder about unread bookmarks

This commit is contained in:
2024-02-23 08:31:12 +11:00
parent a8f74b1e04
commit 6978a3dfc6
8 changed files with 110 additions and 1 deletions

View File

@@ -88,6 +88,14 @@ namespace :blog do
Que.connection = Adamantium::Container["persistence.db"]
Adamantium::Jobs::ArchiveDeletedWebmentions.enqueue
end
task gently_remind_me: ["blog:load_environment"] do
require "hanami/prepare"
require "que"
command = Adamantium::GentlyRemindMe.new
command.call(limit: 5)
end
end
namespace :tailwind do