Browse Source
Merge pull request #337 from colinin/4.4
fix(realtime): realTime module dependencies should be specified
pull/364/head
yx lin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
75 additions and
70 deletions
-
aspnet-core/modules/common/LINGYUN.Abp.IM/LINGYUN/Abp/IM/AbpIMModule.cs
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications/LINGYUN/Abp/Notifications/AbpNotificationModule.cs
|
|
|
@ -1,9 +1,12 @@ |
|
|
|
using Volo.Abp.EventBus; |
|
|
|
using LINGYUN.Abp.RealTime; |
|
|
|
using Volo.Abp.EventBus; |
|
|
|
using Volo.Abp.Modularity; |
|
|
|
|
|
|
|
namespace LINGYUN.Abp.IM |
|
|
|
{ |
|
|
|
[DependsOn(typeof(AbpEventBusModule))] |
|
|
|
[DependsOn( |
|
|
|
typeof(AbpEventBusModule), |
|
|
|
typeof(AbpRealTimeModule))] |
|
|
|
public class AbpIMModule : AbpModule |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
|
using LINGYUN.Abp.Notifications.Internal; |
|
|
|
using LINGYUN.Abp.RealTime; |
|
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
|
using Microsoft.Extensions.Options; |
|
|
|
using System; |
|
|
|
@ -15,7 +16,8 @@ namespace LINGYUN.Abp.Notifications |
|
|
|
[DependsOn( |
|
|
|
typeof(AbpBackgroundWorkersModule), |
|
|
|
typeof(AbpBackgroundJobsAbstractionsModule), |
|
|
|
typeof(AbpJsonModule))] |
|
|
|
typeof(AbpJsonModule), |
|
|
|
typeof(AbpRealTimeModule))] |
|
|
|
public class AbpNotificationModule : AbpModule |
|
|
|
{ |
|
|
|
|
|
|
|
|