Initialization Option Author API

status

Only show Activities that have a status matching one of the specified statuses.

You would want to use this to restrict the Activity list to show only archived Activities, for example.

Examples

var initializationOptions = {
    "config": {
        "activity_list": {
            "filter": {
                "restricted": {
                    "status": ["archived"]
                }
            }
        }
    }
};

Values

Request object key config.activity_list.filter.restricted.status

Default: ["published", "unpublished"]

Type array[string]

Possible values:
  • "published"
  • "unpublished"
  • "archived"
Was this article helpful?