这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
colin 0fa4b848a0 feat(session): add ip geolocation resolution to user sessions 1 year ago
..
LINGYUN/Abp/Identity/Session feat(session): add ip geolocation resolution to user sessions 1 year ago
FodyWeavers.xml upgrade abp framework to 8.2.0 1 year ago
FodyWeavers.xsd upgrade abp framework to 8.2.0 1 year ago
LINGYUN.Abp.Identity.Session.csproj upgrade abp framework to 8.2.0 1 year ago
README.md feat(session): add ip geolocation resolution to user sessions 1 year ago

README.md

LINGYUN.Abp.Identity.Session

用户会话基础模块,提供相关的通用接口

配置使用

[DependsOn(typeof(AbpIdentitySessionModule))]
public class YouProjectModule : AbpModule
{
	public override void ConfigureServices(ServiceConfigurationContext context)
    {
        Configure<IdentitySessionCheckOptions>(options =>
        {
            // 设置会话缓存与持久化设施刷新间隔为10分钟
            options.KeepAccessTimeSpan = TimeSpan.FromMinutes(10);
        });
    }
}