Skip to content

Commit 75bb9d0

Browse files
authored
Merge pull request #348 from traPtitech/feat/add_bluesky
accountTypeにblueskyを追加
2 parents a3f37ab + f58f21e commit 75bb9d0

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/consts/services.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,13 @@ export const services: ServiceRecord = new Map([
9797
name: 'CTFtime',
9898
icon: 'ctftime' //アイコンは保留
9999
}
100+
],
101+
[
102+
AccountType.bluesky,
103+
{
104+
name: 'Bluesky',
105+
icon: 'simple-icons:bluesky'
106+
}
100107
]
101108
])
102109

src/mocks/users.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ const sampleAccounts: Account[] = [
7979
displayName: '',
8080
type: AccountType.zenn,
8181
url: 'https://sample.com'
82+
},
83+
{
84+
id: '',
85+
displayName: '',
86+
type: AccountType.bluesky,
87+
url: 'https://sample.com'
8288
}
8389
]
8490

0 commit comments

Comments
 (0)