public async Task <object> GetRepository(string clientId, string clientPassword)
        {
            _logger.LogInformation("GetRepository");
            var client = new BitbucketClient(new BasicAuthenticationClient(clientId, clientPassword));

            return((await client.GetRepositories(RepositoryRole.Member)).Select(repo => repo.FullName));
        }