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.
|
|
|
# Sanhe.Abp.Hangfire.Dashboard
|
|
|
|
|
|
|
|
Hangfire仪表盘
|
|
|
|
|
|
|
|
需要配合Sanhe.Abp.Hangfire.Storage.XXXSql一起使用。
|
|
|
|
|
|
|
|
## 配置使用
|
|
|
|
还需要配置中间件,需要在授权中间件后面。
|
|
|
|
|
|
|
|
```csharp
|
|
|
|
[DependsOn(typeof(AbpHangfireDashboardModule))]
|
|
|
|
[DependsOn(typeof(AbpHangfireStorageXXXSqlModule))]
|
|
|
|
public class YouProjectModule : AbpModule
|
|
|
|
{
|
|
|
|
// other
|
|
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
|
|
|
{
|
|
|
|
...
|
|
|
|
app.UseAuthentication();
|
|
|
|
...
|
|
|
|
app.UseHangfireDashboard();
|
|
|
|
...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 注意事项
|
|
|
|
|
|
|
|
[作者colinin,Github](https://github.com/colinin/abp-next-admin)
|