Skip to content

Commit 8f78026

Browse files
authored
fixed typo: "Persistet" => "Persistent"
1 parent e1c9306 commit 8f78026

File tree

1 file changed

+1
-1
lines changed
  • src/AbpCompanyName.AbpProjectName.WebSpaAngular/App_Start

1 file changed

+1
-1
lines changed

src/AbpCompanyName.AbpProjectName.WebSpaAngular/App_Start/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void Configuration(IAppBuilder app)
2323
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
2424
LoginPath = new PathString("/Account/Login"),
2525
// evaluate for Persistent cookies (IsPermanent == true). Defaults to 14 days when not set.
26-
ExpireTimeSpan = new TimeSpan(int.Parse(ConfigurationManager.AppSettings["AuthSession.ExpireTimeInDays.WhenPersistet"] ?? "14"), 0, 0, 0),
26+
ExpireTimeSpan = new TimeSpan(int.Parse(ConfigurationManager.AppSettings["AuthSession.ExpireTimeInDays.WhenPersistent"] ?? "14"), 0, 0, 0),
2727
SlidingExpiration = bool.Parse(ConfigurationManager.AppSettings["AuthSession.SlidingExpirationEnabled"] ?? bool.FalseString)
2828
});
2929

0 commit comments

Comments
 (0)