Added comments

This commit is contained in:
Luca Frosini 2022-10-20 11:34:00 +02:00
parent f4dbfd21bd
commit f1ab4b1911
1 changed files with 9 additions and 0 deletions

View File

@ -10,8 +10,17 @@ public interface Moderated {
/* Content Moderation fields */
public static final String CM_ITEM_STATUS_QUERY_PARAMETER = "status";
public static final String SYSTEM_CM_PREFIX = "system:cm_";
/**
* Used to keep tack of item status
*/
public static final String SYSTEM_CM_ITEM_STATUS = SYSTEM_CM_PREFIX + "item_status";
/**
* Used to keep tack of item visibility
*/
public static final String SYSTEM_CM_ITEM_VISIBILITY = SYSTEM_CM_PREFIX + "item_visibility";
/**
* Used to keep tack of item author
*/
public static final String SYSTEM_CM_ITEM_AUTHOR = SYSTEM_CM_PREFIX + "item_author";
public String approve(String moderatorMessage);