Skip to content

Commit 672d7d2

Browse files
committed
change url
1 parent 6ed0c5e commit 672d7d2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"bugs": {
1717
"url": "https://github.com/wdhdev/my-github-profile/issues"
1818
},
19-
"homepage": "https://my-github-profile.wdh.app",
19+
"homepage": "https://mgp.hrsn.dev",
2020
"dependencies": {
2121
"@sentry/node": "^8.18.0",
2222
"@sentry/profiling-node": "^8.18.0",

src/endpoints/api/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import querystring from "node:querystring";
55
export default async (req: Request, res: Response) => {
66
const params = querystring.stringify({
77
client_id: process.env.github_client_id,
8-
redirect_uri: "https://my-github-profile.wdh.app/api/callback",
8+
redirect_uri: "https://mgp.hrsn.dev/api/callback",
99
scope: "read:org read:user user:email"
1010
})
1111

src/endpoints/api/callback.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async (req: Request & SessionData, res: Response) => {
1212
client_id: process.env.github_client_id,
1313
client_secret: process.env.github_client_secret,
1414
code: code,
15-
redirect_uri: "https://my-github-profile.wdh.app/api/callback"
15+
redirect_uri: "https://mgp.hrsn.dev/api/callback"
1616
})
1717

1818
try {

views/account.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta itemprop="image" content="https://avatars.githubusercontent.com/u/9919">
1616

1717
<!-- Facebook Meta Tags -->
18-
<meta property="og:url" content="https://my-github-profile.wdh.app">
18+
<meta property="og:url" content="https://mgp.hrsn.dev">
1919
<meta property="og:type" content="website">
2020
<meta property="og:title" content="My GitHub Profile">
2121
<meta property="og:description" content="A website which provides a ton of information about your GitHub account.">

views/login.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta itemprop="image" content="https://avatars.githubusercontent.com/u/9919">
1616

1717
<!-- Facebook Meta Tags -->
18-
<meta property="og:url" content="https://my-github-profile.wdh.app">
18+
<meta property="og:url" content="https://mgp.hrsn.dev">
1919
<meta property="og:type" content="website">
2020
<meta property="og:title" content="My GitHub Profile">
2121
<meta property="og:description" content="A website which provides a ton of information about your GitHub account.">

0 commit comments

Comments
 (0)