Skip to content

RemoveCoverFromCardAction

Rasmus Wulff Jensen edited this page Nov 1, 2023 · 2 revisions

Back to Automation Action List

This Automation Action Removes a Cover from a card

Input options

  • None

Examples

Automation sampleAutomation = new Automation("Remove Cover when the card is moved to board from another",
    new CardMovedToBoardTrigger(),
    null, //No conditions
    new List<IAutomationAction>
    {
        new RemoveCoverFromCardAction()
    });

Clone this wiki locally