-
-
Notifications
You must be signed in to change notification settings - Fork 5
CardMovedToBoardTrigger
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
Back to Automation Trigger List
Action to remove one or more field values on a card
- None
var cardMovedToBoardTrigger = new Automation("Remove and Start and Due Dates (if any) when a card is move to this board from another board",
new CardMovedToBoardTrigger(), // <-- Our trigger is when a Card is moved from another board
null, //No condition
new List<IAutomationAction>
{
new RemoveCardDataAction(
RemoveCardDataType.StartDate,
RemoveCardDataType.DueDate
)
});If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')