anteo / redmine_custom_workflows

Allows to create custom workflows for Redmine
http://www.redmine.org/plugins/custom-workflows
GNU General Public License v2.0
178 stars 72 forks source link

Can i handle global attributes for specific issues? #312

Closed dgmttl closed 1 year ago

dgmttl commented 1 year ago

Can I change parent attributes (start / due dates) for specific issues? I want some issues do not update parent dates at all.

AirTibu commented 1 year ago

Hi,

Try this code:

self.parent.start_date = self.start_date if self.parent

I hope it helps!