Extra statuses path

merge-requests/30/head
Bob Mottram 2024-05-30 09:34:33 +01:00
parent 19c876ee85
commit d6f4796065
1 changed files with 6 additions and 3 deletions

View File

@ -2857,10 +2857,13 @@ def _is_valid_language(text: str) -> bool:
def _get_reserved_words() -> str: def _get_reserved_words() -> str:
"""Returns a list of reserved words which should not be
used for nicknames in order to avoid confusion
"""
return ('inbox', 'dm', 'outbox', 'following', return ('inbox', 'dm', 'outbox', 'following',
'public', 'followers', 'category', 'public', 'followers', 'category',
'channel', 'calendar', 'video-channels', 'channel', 'calendar', 'video-channels',
'tlreplies', 'tlmedia', 'tlblogs', 'videos', 'tlreplies', 'tlmedia', 'tlblogs',
'tlblogs', 'tlfeatures', 'tlblogs', 'tlfeatures',
'moderation', 'moderationaction', 'moderation', 'moderationaction',
'activity', 'undo', 'pinned', 'activity', 'undo', 'pinned',
@ -2879,8 +2882,8 @@ def _get_reserved_words() -> str:
'mention', 'http', 'https', 'ipfs', 'ipns', 'mention', 'http', 'https', 'ipfs', 'ipns',
'ontologies', 'data', 'postedit', 'moved', 'ontologies', 'data', 'postedit', 'moved',
'inactive', 'activitypub', 'actors', 'inactive', 'activitypub', 'actors',
'notes', 'offers', 'wanted', 'honk', 'note', 'notes', 'offers', 'wanted', 'honk',
'button') 'button', 'post', 'item', 'comment')
def get_nickname_validation_pattern() -> str: def get_nickname_validation_pattern() -> str: