Adds incoming handler for blocking

This commit is contained in:
Mouse Reeve
2021-01-23 11:03:10 -08:00
parent 54f8a65ae2
commit cc8888dea2
5 changed files with 50 additions and 2 deletions

View File

@ -48,6 +48,10 @@ class Follow(Verb):
''' Follow activity '''
type: str = 'Follow'
@dataclass(init=False)
class Block(Verb):
''' Block activity '''
type: str = 'Block'
@dataclass(init=False)
class Accept(Verb):