Пример #1
0
    public async Task <ActionResult <bool> > IsValidPath(string path)
    {
        _logger.LogDebug("Validating Path {path}", path);

        bool pathExists = await _tenantService.CheckPathExists(path);

        return(!pathExists);
    }