Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
- Overview of Segmenting and Protecting Data 1:52
- Segmenting Data
- Updating the Database Seed Data
- Updating the Entries Repository
- Updating the Entries List Page
- Protecting User Data
- Securing Communication Between the Client and Server
- Preventing Cross-Site Request Forgery (CSRF)
- Reviewing Segmenting and Protecting Data 6:49
- Wrap Up 1:57
- Section Review 5 questions
Well done!
You have completed User Authentication with ASP.NET Identity!
Instruction
Updating the Entries List Page
Let's resolve the compilation error in the EntriesController
class that we introduced in the last step. Open the "EntriesController.cs" file located in the Treehouse.FitnessFrog
project's "Controllers" folder.
We need to update the Index
action method to pass an argument for the EntriesRepository.GetList
method's userId
parameter. To do that, we need to get the user ID for the curr...