Merge pull request #17652 from abpframework/serviceType

Fix `ServiceType` condition of CLI.
pull/17654/head
Halil İbrahim Kalkan 2 years ago committed by GitHub
commit 9240054393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save