Have an application were 99% of the actions will require user to be logged in.
The options I've come across are -
1-)Create a base controller inheritance chain and apply authorize attribute at that level. Something like: BaseController > AuthorizeController, BaseController > PublicController. (don't like this because of the inheritance chain)
2-)Create a custom authorize attribute and use a flag to bypass authorization. Similar to this post. (my preference so far).
What are other options/best practice? What about using web.config like in asp.net webforms? Reference here. Does that do the same as the authorize attribute?