access for guest #12329
Answered
by
candlerb
sadden3194
asked this question in
Help Wanted!
access for guest
#12329
-
Hi all is it possible to set read-only access for guest (no login needed)? |
Beta Was this translation helpful? Give feedback.
Answered by
candlerb
Apr 24, 2023
Replies: 1 comment 3 replies
-
Yes. Firstly, you need Secondly, you need |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
jeremystretch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes.
Firstly, you need
LOGIN_REQUIRED = False
(which should be the default anyway). See LOGIN_REQUIRED.Secondly, you need
EXEMPT_VIEW_PERMISSIONS = ['*']
. See EXEMPT_VIEW_PERMISSIONS.