mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
server+client: added sound flag to video posts
This commit is contained in:
committed by
Marcin Kurczewski
parent
c8fe0fcdff
commit
2235a72d2f
@ -81,6 +81,7 @@ TYPE_MAP = {
|
||||
|
||||
FLAG_MAP = {
|
||||
model.Post.FLAG_LOOP: 'loop',
|
||||
model.Post.FLAG_SOUND: 'sound',
|
||||
}
|
||||
|
||||
|
||||
|
@ -154,6 +154,7 @@ class Post(Base):
|
||||
TYPE_FLASH = 'flash'
|
||||
|
||||
FLAG_LOOP = 'loop'
|
||||
FLAG_SOUND = 'sound'
|
||||
|
||||
# basic meta
|
||||
post_id = sa.Column('id', sa.Integer, primary_key=True)
|
||||
|
Reference in New Issue
Block a user