London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
What are SecurityAccess rights for the site (available under CMS -> Admin -> Admin -> Config -> Access Rights)?
Hi.
I'm trying to use the [Authorize] and [AllowAnonymous] attributes in my EPiServer site.
All, of my controllers are marked with the [Authorize] attribute, except of one. This one is marked with the [AllowAnonymous] attribute. When I'm trying to access this controller without authenticating, I still get redirected to the login-screen.
This is (a part of) my code:
[AllowAnonymous] public ActionResult Index(StartPage currentPage)
Any obvious mistakes?
// Anders