Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
fix: webhook properties(#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cahllagerfeld authored Jul 10, 2022
1 parent e23d285 commit 682175c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/github/github.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ export class GithubController {
const populatedObject = {
...createdObject.toObject(),
repoName: body.repository.full_name,
repoURL: body.html_url,
githubUserURL: body.sender.url,
repoURL: body.repository.html_url,
githubUserURL: body.sender.html_url,
};
this.eventService.emitEvent(populatedObject);
}
Expand Down

0 comments on commit 682175c

Please sign in to comment.