Skip to content

Commit 908bfc8

Browse files
authored
[TASK] Public Profile Pages Adjustments (#653)
1 parent 6f56f92 commit 908bfc8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/Enum/LinkTypes.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ final class LinkTypes extends AbstractEnum
2121
public const FACEBOOK = 'facebook';
2222
public const INSTAGRAM = 'instagram';
2323
public const MASTODON = 'mastodon';
24+
public const BLUESKY = 'bluesky';
2425
public const THREADS = 'threads';
2526
public const YOUTUBE = 'youtube';
2627
// Business profiles
@@ -38,6 +39,7 @@ final class LinkTypes extends AbstractEnum
3839
self::FACEBOOK => 'Facebook',
3940
self::INSTAGRAM => 'Instagram',
4041
self::MASTODON => 'Mastodon',
42+
self::BLUESKY => 'Bluesky',
4143
self::THREADS => 'Threads',
4244
self::YOUTUBE => 'YouTube',
4345
self::XING => 'XING',
@@ -57,12 +59,13 @@ final class LinkTypes extends AbstractEnum
5759
self::FACEBOOK => 'actions-brand-facebook',
5860
self::INSTAGRAM => 'actions-brand-instagram',
5961
self::MASTODON => 'actions-brand-mastodon',
62+
self::BLUESKY => 'actions-brand-bluesky',
6063
self::THREADS => 'actions-brand-threads',
6164
self::YOUTUBE => 'actions-brand-youtube',
6265
self::XING => 'actions-brand-xing',
6366
self::LINKEDIN => 'actions-brand-linkedin',
64-
self::GITHUB => 'actions-brand-git',
65-
self::GITLAB => 'actions-brand-git',
67+
self::GITHUB => 'actions-brand-github',
68+
self::GITLAB => 'actions-brand-gitlab',
6669
self::STACKOVERFLOW => 'actions-link',
6770
self::OTHER => 'actions-link',
6871
];
@@ -75,7 +78,8 @@ final class LinkTypes extends AbstractEnum
7578
self::X => 'https://x.com/',
7679
self::FACEBOOK => 'https://www.facebook.com/',
7780
self::INSTAGRAM => 'https://www.instagram.com/',
78-
self::MASTODON => 'https://typo3.social/@',
81+
self::MASTODON => 'https://',
82+
self::BLUESKY => 'https://bsky.app/profile/',
7983
self::THREADS => 'https://www.threads.net/@',
8084
self::YOUTUBE => 'https://www.youtube.com/@',
8185
self::XING => 'https://www.xing.com/pages/',

0 commit comments

Comments
 (0)