Reputation: 33988
I created a new controller called Dashboard and a View called Index which says, Hello Username.
In MVC, how can I make this only available to logged in users?
Upvotes: 0
Views: 164
Reputation: 17108
You can use the Authorize
attribute:
[Authorize]
public ActionResult Index()
{
}
Upvotes: 4