django-rq icon indicating copy to clipboard operation
django-rq copied to clipboard

Admin link control is only configurable via system setting

Open christophertubbs opened this issue 4 years ago • 2 comments
trafficstars

Currently, the only way to show or hide the admin link is to set RQ_SHOW_ADMIN_LINK = True in the system settings for your django server. Unfortunately, unless there are some knobs and dials I haven't found, that only shows it for all users that can access the admin site or absolutely none of them. Setting a link directly to the queues is workable at the very least, which is nice. That still presents a situation where users that I don't want to have access to the queue now have access to the queue.

What would be preferable would be access to be controlled via permissions so I can easily dictate who has access to what resources on the admin site like just about any other app.

christophertubbs avatar Jun 28 '21 17:06 christophertubbs

Yes, having a permission to view Django-RQ pages would be nice. A PR for this is welcome :)

selwin avatar Sep 16 '21 07:09 selwin

#512 adds custom permissions to the admin views

haakenlid avatar Sep 27 '21 23:09 haakenlid