Beispiel #1
0
        private async Task <HttpStatusCode> PushToSpace(GitHubCommit commit)
        {
            if (commit == null)
            {
                return(HttpStatusCode.InternalServerError);
            }

            return(await _spaceService.PushGitHubNotification(commit));
        }