django-dashing
django-dashing copied to clipboard
403 Forbidden
Hi,
Following the documentation, I have added the IsAuthenticated permission to the configuration. How do I set the redirect to login setting so that an unauthenticated user is redirected to my site's login page?
# settings for django-dashing dashboard
DASHING = {
'INSTALLED_WIDGETS': ('number', 'list', 'graph', 'clock', 'knob', ),
'PERMISSION_CLASSES': (
'dashing.permissions.IsAuthenticated',
)
}