1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 23:05:10 +01:00

'hidden' visibility option

This commit is contained in:
2025-09-12 19:59:06 +02:00
parent 9890eafb69
commit 7facbeb149

View File

@@ -1,3 +1,8 @@
"""Models for digimarks.
Contains the bookmarks administration, users, tags, public tags and more.
"""
from datetime import UTC, datetime from datetime import UTC, datetime
from http import HTTPStatus from http import HTTPStatus
from typing import Optional, Type, TypeVar from typing import Optional, Type, TypeVar
@@ -25,6 +30,7 @@ class Visibility:
VISIBLE = 0 VISIBLE = 0
DELETED = 1 DELETED = 1
HIDDEN = 2
# Type var used for building custom types for the DB # Type var used for building custom types for the DB