use warnings;
use strict;

our @ScripActions = (
    {
        Name        => 'Update Parent TimeWorked',    # loc
        Description => 'Update Parent TimeWorked',    # loc
        ExecModule  => 'UpdateParentTimeWorked',
    },
    {
        Name        => 'Update User TimeWorked',    # loc
        Description => 'Update User TimeWorked',    # loc
        ExecModule  => 'UpdateUserTimeWorked',
    },
);


our @ScripConditions = (
    {
        Name                 => 'On TimeWorked Change',      # loc
        Description          => 'When TimeWorked Change',    # loc
        ApplicableTransTypes => 'Any',
        ExecModule           => 'TimeWorkedChange',
    },
);

our @Scrips = (
    {
        Description    => 'On TimeWorked Change Update Parent TimeWorked',
        ScripCondition => 'On TimeWorked Change',
        ScripAction    => 'Update Parent TimeWorked',
        Template       => 'Blank',
        Disabled       => 1,
    },
    {
        Description    => 'On TimeWorked Change Update User TimeWorked',
        ScripCondition => 'On TimeWorked Change',
        ScripAction    => 'Update User TimeWorked',
        Template       => 'Blank',
        Disabled       => 1,
    },
);

1;
