Skip to content

Commit

Permalink
Merge pull request #21 from badging/search-improvements
Browse files Browse the repository at this point in the history
modified repo url
  • Loading branch information
kaxada authored Jan 27, 2024
2 parents 76af1d1 + 1d20ae7 commit b32c1ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion providers/github/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { getUserInfo, getUserRepositories } = require("./APICalls.js");
// instantiate Github App for event handling (webhooks)
const githubApp = new App({
appId: process.env.GITHUB_APP_ID,
privateKey: process.env.GITHUB_APP_PRIVATE_KEY.replace(/\\n/g, '\n'),
privateKey: process.env.GITHUB_APP_PRIVATE_KEY.replace(/\\n/g, "\n"),
oauth: {
clientId: process.env.GITHUB_APP_CLIENT_ID,
clientSecret: process.env.GITHUB_APP_CLIENT_SECRET,
Expand Down
2 changes: 1 addition & 1 deletion providers/gitlab/APICalls.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const getUserRepositories = async (access_token) => {
...data.map((repo) => {
return {
id: repo.id,
fullName: repo.name_with_namespace,
fullName: repo.path_with_namespace,
};
})
);
Expand Down

0 comments on commit b32c1ed

Please sign in to comment.