##// END OF EJS Templates
Made SyncManager's methods static
Made SyncManager's methods static

File last commit:

r1157:d41f2b1c merge decentral
r1236:124750d7 decentral
Show More
__init__.py
10 lines | 350 B | text/x-python | PythonLexer
neko259
Moved models to a separate module folder. Starting to split up models file
r384 __author__ = 'neko259'
neko259
Added signature model. Use signatures in posts
r820 from boards.models.signature import GlobalId, Signature
neko259
Generate GET request and response (not full yet). Add global id to the posts...
r827 from boards.models.sync_key import KeyPair
neko259
Moved post image to a separate model. Each post (as of model) can contain multiple images now. The image shown to the user is got with get_first_image method
r693 from boards.models.image import PostImage
from boards.models.thread import Thread
neko259
Moved models to a separate module folder. Starting to split up models file
r384 from boards.models.post import Post
neko259
Split up tag module from post module
r385 from boards.models.tag import Tag
neko259
Split up user models
r386 from boards.models.user import Ban
neko259
Added banner to show the site news. Returned the message middleware because it...
r1148 from boards.models.banner import Banner