tangled
alpha
login
or
join now
hailey.at
/
atproto-ruleset
3
fork
atom
A collection of Osprey rules for ATProto
3
fork
atom
overview
issues
pulls
pipelines
adjust regex for bsky store rule
hailey.at
2 months ago
db1fb8a1
709d8e6f
+2
-2
2 changed files
expand all
collapse all
unified
split
rules
record
post
bsky_store.sml
profile
bsky_store.sml
+1
-1
rules/record/post/bsky_store.sml
···
8
8
9
9
_AgeGate = AccountAgeSecondsUnwrapped <= Day or PostsCount <= 5
10
10
11
11
-
_BskyStoreDisplayName = RegexMatch(target=DisplayName, pattern=r'(?i)^bl?sky ? sto?re$')
11
11
+
_BskyStoreDisplayName = RegexMatch(target=DisplayName, pattern=r'(?i)^bl?sky ?sto?re$')
12
12
13
13
_DisplayNameGate = _BskyStoreDisplayName == True and _AgeGate
14
14
+1
-1
rules/record/profile/bsky_store.sml
···
6
6
],
7
7
)
8
8
9
9
-
_BskyStoreDisplayName = RegexMatch(target=ProfileDisplayName, pattern=r'(?i)^bl?sky ? sto?re$')
9
9
+
_BskyStoreDisplayName = RegexMatch(target=ProfileDisplayName, pattern=r'(?i)^bl?sky ?sto?re$')
10
10
11
11
_Gate = _BskyStoreDisplayName == True and (AccountAgeSecondsUnwrapped <= Day or PostsCount <= 5)
12
12