Skip to content

Commit 4a7ad0d

Browse files
authored
fixed typo: "Persistet" => "Persistent"
1 parent 0c57a51 commit 4a7ad0d

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public void Configuration(IAppBuilder app)
2525
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
2626
LoginPath = new PathString("/Account/Login"),
2727
// by setting following values, the auth cookie will expire after the configured amount of time (default 14 days) when user set the (IsPermanent == true) on the login
28-
ExpireTimeSpan = new TimeSpan(int.Parse(ConfigurationManager.AppSettings["AuthSession.ExpireTimeInDays.WhenPersistet"] ?? "14"), 0, 0, 0),
28+
ExpireTimeSpan = new TimeSpan(int.Parse(ConfigurationManager.AppSettings["AuthSession.ExpireTimeInDays.WhenPersistent"] ?? "14"), 0, 0, 0),
2929
SlidingExpiration = bool.Parse(ConfigurationManager.AppSettings["AuthSession.SlidingExpirationEnabled"] ?? bool.FalseString)
3030

3131
});

0 commit comments

Comments
 (0)