Initialization Option Author API

allow

Controls whether Item editing is allowed in the Activity editor view.

You would want to use this to disable Item editing for authors.

Note The author will still need the correct permissions to be able to edit Items.

Examples

// Disable the ability to edit Items
var initializationOptions = {
    "config": {
        "activity_edit": {
            "item": {
                "edit": {
                    "allow": false
                }
            }
        }
    }
};

Values

Request object key config.activity_edit.item.edit.allow

Default: true

Type boolean

Related articles

Was this article helpful?