Skip to content

Commit

Permalink
fix(git-provider): add git.theoludwig.fr support
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Apr 15, 2024
1 parent 78351c2 commit 12d8147
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/manifests/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"*://dev.azure.com/*",
"*://*.visualstudio.com/*",
"*://gitea.com/*",
"*://git.theoludwig.fr/*",
"*://gitlab.com/*",
"*://gitee.com/*",
"*://sourceforge.net/*"
Expand Down
1 change: 1 addition & 0 deletions src/manifests/chrome-edge.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"*://dev.azure.com/*",
"*://*.visualstudio.com/*",
"*://gitea.com/*",
"*://git.theoludwig.fr/*",
"*://gitlab.com/*",
"*://gitee.com/*",
"*://sourceforge.net/*"
Expand Down
1 change: 1 addition & 0 deletions src/providers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const getGitProvider = (href) => {
return providerConfig.bitbucket;

case /gitea\.com/.test(href):
case /git\.theoludwig\.fr/.test(href):
return providerConfig.gitea;

case /dev\.azure\.com/.test(href):
Expand Down

0 comments on commit 12d8147

Please sign in to comment.