Browse Source
Merge pull request #17654 from abpframework/auto-merge/rel-7-4/2190
Merge branch dev with rel-7.4
pull/17668/head
maliming
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/ServiceProxyGeneratorBase.cs
|
|
|
@ -47,7 +47,7 @@ public abstract class ServiceProxyGeneratorBase<T> : IServiceProxyGenerator wher |
|
|
|
switch (serviceType) |
|
|
|
{ |
|
|
|
case ServiceType.Application: |
|
|
|
moduleDefinition.Controllers.RemoveAll(x => !x.Value.IsRemoteService); |
|
|
|
moduleDefinition.Controllers.RemoveAll(x => x.Value.IsIntegrationService); |
|
|
|
break; |
|
|
|
case ServiceType.Integration: |
|
|
|
moduleDefinition.Controllers.RemoveAll(x => !x.Value.IsIntegrationService); |
|
|
|
|