Update description.exs with :poll_notifications and :notifications oban queues

This commit is contained in:
Alex Gleason 2022-09-06 11:04:22 -05:00
parent 5b8b21b9e9
commit 7375535af2
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -1917,6 +1917,8 @@
federator_outgoing: 50,
mailer: 10,
scheduled_activities: 10,
poll_notifications: 10,
notifications: 20,
transmogrifier: 20,
web_push: 50
],
@ -1969,6 +1971,18 @@
description: "Scheduled activities queue, see Pleroma.ScheduledActivities",
suggestions: [10]
},
%{
key: :poll_notifications,
type: :integer,
description: "Stores poll expirations so it can notify users when a poll ends",
suggestions: [10]
},
%{
key: :notifications,
type: :integer,
description: "Creates notifications for activities in the background",
suggestions: [20]
},
%{
key: :transmogrifier,
type: :integer,