Job Queue is not showing in dashboard #12038
Answered
by
timurkhakhalev
timurkhakhalev
asked this question in
Q&A
-
Here are the part of my config:
Had tried this config in next payloadcms versions: 3.5, 3.15, 3.32. |
Beta Was this translation helpful? Give feedback.
Answered by
timurkhakhalev
Apr 10, 2025
Replies: 1 comment
-
Thanks one guy from Discord https://discord.com/channels/967097582721572934/1358755865921982534: By default the jobs collection is hidden, you can overwrite it and set hidden to false like this: jobs: {
tasks: [], // your tasks
jobsCollectionOverrides: ({defaultJobsCollection}) => {
if(!defaultJobsCollection.admin){
defaultJobsCollection.admin = {};
}
defaultJobsCollection.admin.hidden = false;
return defaultJobsCollection
}
} Payloadcms documentation is so poor... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
timurkhakhalev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks one guy from Discord https://discord.com/channels/967097582721572934/1358755865921982534:
By default the jobs collection is hidden, you can overwrite it and set hidden to false like this:
Payloadcms documentation is so poor...