Browse Source

Merge pull request #23784 from abpframework/auto-merge/rel-9-3/3987

Merge branch dev with rel-9.3
pull/23785/head
Ma Liming 5 months ago
committed by GitHub
parent
commit
191adf197f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LogoutCommand.cs

6
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LogoutCommand.cs

@ -21,9 +21,11 @@ public class LogoutCommand : IConsoleCommand, ITransientDependency
Logger = NullLogger<LogoutCommand>.Instance;
}
public Task ExecuteAsync(CommandLineArgs commandLineArgs)
public async Task ExecuteAsync(CommandLineArgs commandLineArgs)
{
return AuthService.LogoutAsync();
await AuthService.LogoutAsync();
Logger.LogInformation("You are logged out.");
}
public string GetUsageInfo()

Loading…
Cancel
Save