Skip to content

Commit b6c4332

Browse files
committed
added bsky_verification to list of known lexicons
1 parent 7661fa2 commit b6c4332

File tree

1 file changed

+30
-28
lines changed

1 file changed

+30
-28
lines changed

lib/skyfall/collection.rb

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,39 @@
11
module Skyfall
22
module Collection
3-
BSKY_PROFILE = "app.bsky.actor.profile"
4-
BSKY_FEED = "app.bsky.feed.generator"
5-
BSKY_LIKE = "app.bsky.feed.like"
6-
BSKY_POST = "app.bsky.feed.post"
7-
BSKY_POSTGATE = "app.bsky.feed.postgate"
8-
BSKY_REPOST = "app.bsky.feed.repost"
9-
BSKY_THREADGATE = "app.bsky.feed.threadgate"
10-
BSKY_BLOCK = "app.bsky.graph.block"
11-
BSKY_FOLLOW = "app.bsky.graph.follow"
12-
BSKY_LIST = "app.bsky.graph.list"
13-
BSKY_LISTBLOCK = "app.bsky.graph.listblock"
14-
BSKY_LISTITEM = "app.bsky.graph.listitem"
15-
BSKY_STARTERPACK = "app.bsky.graph.starterpack"
16-
BSKY_LABELER = "app.bsky.labeler.service"
3+
BSKY_PROFILE = "app.bsky.actor.profile"
4+
BSKY_FEED = "app.bsky.feed.generator"
5+
BSKY_LIKE = "app.bsky.feed.like"
6+
BSKY_POST = "app.bsky.feed.post"
7+
BSKY_POSTGATE = "app.bsky.feed.postgate"
8+
BSKY_REPOST = "app.bsky.feed.repost"
9+
BSKY_THREADGATE = "app.bsky.feed.threadgate"
10+
BSKY_BLOCK = "app.bsky.graph.block"
11+
BSKY_FOLLOW = "app.bsky.graph.follow"
12+
BSKY_LIST = "app.bsky.graph.list"
13+
BSKY_LISTBLOCK = "app.bsky.graph.listblock"
14+
BSKY_LISTITEM = "app.bsky.graph.listitem"
15+
BSKY_STARTERPACK = "app.bsky.graph.starterpack"
16+
BSKY_VERIFICATION = "app.bsky.graph.verification"
17+
BSKY_LABELER = "app.bsky.labeler.service"
1718

1819
BSKY_CHAT_DECLARATION = "chat.bsky.actor.declaration"
1920

2021
SHORT_CODES = {
21-
BSKY_BLOCK => :bsky_block,
22-
BSKY_FEED => :bsky_feed,
23-
BSKY_FOLLOW => :bsky_follow,
24-
BSKY_LABELER => :bsky_labeler,
25-
BSKY_LIKE => :bsky_like,
26-
BSKY_LIST => :bsky_list,
27-
BSKY_LISTBLOCK => :bsky_listblock,
28-
BSKY_LISTITEM => :bsky_listitem,
29-
BSKY_POST => :bsky_post,
30-
BSKY_POSTGATE => :bsky_postgate,
31-
BSKY_PROFILE => :bsky_profile,
32-
BSKY_REPOST => :bsky_repost,
33-
BSKY_STARTERPACK => :bsky_starterpack,
34-
BSKY_THREADGATE => :bsky_threadgate,
22+
BSKY_BLOCK => :bsky_block,
23+
BSKY_FEED => :bsky_feed,
24+
BSKY_FOLLOW => :bsky_follow,
25+
BSKY_LABELER => :bsky_labeler,
26+
BSKY_LIKE => :bsky_like,
27+
BSKY_LIST => :bsky_list,
28+
BSKY_LISTBLOCK => :bsky_listblock,
29+
BSKY_LISTITEM => :bsky_listitem,
30+
BSKY_POST => :bsky_post,
31+
BSKY_POSTGATE => :bsky_postgate,
32+
BSKY_PROFILE => :bsky_profile,
33+
BSKY_REPOST => :bsky_repost,
34+
BSKY_STARTERPACK => :bsky_starterpack,
35+
BSKY_THREADGATE => :bsky_threadgate,
36+
BSKY_VERIFICATION => :bsky_verification,
3537
BSKY_CHAT_DECLARATION => :bsky_chat_declaration,
3638
}
3739

0 commit comments

Comments
 (0)