52 lines
664 B
Python
52 lines
664 B
Python
|
|
|
|
ACTIVITY_TYPES = [
|
|
'Accept',
|
|
'Add',
|
|
'Announce',
|
|
'Arrive',
|
|
'Block',
|
|
'Create',
|
|
'Delete',
|
|
'Dislike',
|
|
'Flag',
|
|
'Follow',
|
|
'Ignore',
|
|
'Invite',
|
|
'Join',
|
|
'Leave',
|
|
'Like',
|
|
'Listen',
|
|
'Move',
|
|
'Offer',
|
|
'Question',
|
|
'Reject',
|
|
'Read',
|
|
'Remove',
|
|
'TentativeReject',
|
|
'TentativeAccept',
|
|
'Travel',
|
|
'Undo',
|
|
'Update',
|
|
'View',
|
|
]
|
|
|
|
|
|
OBJECT_TYPES = [
|
|
'Article',
|
|
'Audio',
|
|
'Document',
|
|
'Event',
|
|
'Image',
|
|
'Note',
|
|
'Page',
|
|
'Place',
|
|
'Profile',
|
|
'Relationship',
|
|
'Tombstone',
|
|
'Video',
|
|
]
|
|
|
|
def deliver(content, on_behalf_of, to=[]):
|
|
pass
|