diff --git a/lib/MetaCPAN/Web/Model/API/Author.pm b/lib/MetaCPAN/Web/Model/API/Author.pm index 97c7775a96..7e594b45a6 100644 --- a/lib/MetaCPAN/Web/Model/API/Author.pm +++ b/lib/MetaCPAN/Web/Model/API/Author.pm @@ -113,6 +113,10 @@ my $profile_data = { name => 'Bitbucket', url_format => 'https://bitbucket.org/%s', }, + codeberg => { + name => 'Codeberg', + url_format => 'https://codeberg.org/%s', + }, coderwall => { name => 'Coderwall', url_format => 'https://coderwall.com/%s', diff --git a/root/static/images/profile/codeberg.png b/root/static/images/profile/codeberg.png new file mode 100644 index 0000000000..7f4854592c Binary files /dev/null and b/root/static/images/profile/codeberg.png differ diff --git a/root/static/less/account.less b/root/static/less/account.less index 5529de5bfe..e20e0bc579 100644 --- a/root/static/less/account.less +++ b/root/static/less/account.less @@ -71,6 +71,9 @@ &.profile-brightkite .control-label { background-image: url(/static/images/profile/brightkite.png); } + &.profile-codeberg .control-label { + background-image: url(/static/images/profile/codeberg.png); + } &.profile-coderwall .control-label { background-image: url(/static/images/profile/coderwall.png); }