1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-08-19 00:51:28 +00:00

Added "LIST" service - to be used to optionally host an otherwise private list if the user wants to share it publicly.

This commit is contained in:
CalDescent
2021-11-17 18:59:45 +00:00
parent d0aafaee60
commit 3a05a0bcaa

@@ -25,7 +25,8 @@ public enum Service {
BLOG_POST(777, false, null, null), BLOG_POST(777, false, null, null),
BLOG_COMMENT(778, false, null, null), BLOG_COMMENT(778, false, null, null),
DOCUMENT(800, false, null, null), DOCUMENT(800, false, null, null),
PLAYLIST(900, true, null, null), LIST(900, true, null, null),
PLAYLIST(910, true, null, null),
APP(1000, false, null, null), APP(1000, false, null, null),
METADATA(1100, false, null, null), METADATA(1100, false, null, null),
QORTAL_METADATA(1111, true, 10*1024L, Arrays.asList("title", "description", "tags")); QORTAL_METADATA(1111, true, 10*1024L, Arrays.asList("title", "description", "tags"));