I'm a bit confused on which way to accomplish things. My website can display a Feed of stories to a user, and the feed can be one of multiple categories. (eg. you could look at a "All Stories" feed, or a "My Submissions" feed).
In terms of handling routing, does it make more sense to:
1) Have an Action (Home/index) handle different "storyCategory" parameters with routing like this:
[Route("~/"), Route("")] //Index will be default route for both SiteRoot and SiteRoot/Home
[Route("{storyCategory?}/{page?}")]
[Route("{storyCategory?}/Page/{page?}")]
public ActionResult Index(Story.Category storyCategory = Story.Category.None, int page = 1)
OR
2) have a specific action for each storyCategory instead of passing the enum in as a parameter:
[Route("~/"), Route("")] //Index will be default route for both SiteRoot and SiteRoot/Home
public ActionResult Index(int page = 1)
public ActionResult ReadLater(int page = 1)
public ActionResult PlanToUse(int page = 1)