Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(356)

Side by Side Diff: Calendar.ASP.NET.MVC5/Models/IdentityModels.cs

Issue 194980043: Issue 6: Create an ASP.Net MVC Sample Base URL: https://google-api-dotnet-client.samples.googlecode.com/hg/
Patch Set: Correct base revision Created 9 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 using System.Data.Entity;
2 using System.Security.Claims;
3 using System.Threading.Tasks;
4 using Microsoft.AspNet.Identity;
5 using Microsoft.AspNet.Identity.EntityFramework;
6
7 namespace Calendar.ASP.NET.MVC5.Models
8 {
9 // You can add profile data for the user by adding more properties to your A pplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
peleyal 2015/01/12 08:11:23 Please keep no more than 120 chars per lijne
jmcgrew 2015/02/20 02:53:17 Done.
10 public class ApplicationUser : IdentityUser
11 {
12 public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager< ApplicationUser> manager)
13 {
14 // Note the authenticationType must match the one defined in CookieA uthenticationOptions.AuthenticationType
15 var userIdentity = await manager.CreateIdentityAsync(this, DefaultAu thenticationTypes.ApplicationCookie);
16 // Add custom user claims here
17 return userIdentity;
18 }
19 }
20
21 public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
22 {
23 public ApplicationDbContext()
24 : base("DefaultConnection", throwIfV1Schema: false)
25 {
26 }
27
28 public static ApplicationDbContext Create()
29 {
30 return new ApplicationDbContext();
31 }
32 }
33 }
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b