mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 22:05:09 +01:00
'hidden' visibility option
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
"""Models for digimarks.
|
||||
|
||||
Contains the bookmarks administration, users, tags, public tags and more.
|
||||
"""
|
||||
|
||||
from datetime import UTC, datetime
|
||||
from http import HTTPStatus
|
||||
from typing import Optional, Type, TypeVar
|
||||
@@ -25,6 +30,7 @@ class Visibility:
|
||||
|
||||
VISIBLE = 0
|
||||
DELETED = 1
|
||||
HIDDEN = 2
|
||||
|
||||
|
||||
# Type var used for building custom types for the DB
|
||||
|
||||
Reference in New Issue
Block a user