switch over to storing rspace+ss as decision list
[scpubgit/DX.git] / lib / DX / ActionBuilder / ProxySetToAdd.pm
CommitLineData
dcf2adc7 1package DX::ActionBuilder::ProxySetToAdd;
2
3use DX::Class;
4
5with 'DX::Role::ActionBuilder';
6
7has target_path => (is => 'ro', required => 1);
8
9has proxy_to => (is => 'ro', required => 1);
10
11sub action_for_set_value {
12 my ($self, $value) = @_;
13 $self->proxy_to->action_for_add_member($self->target_path->[-1], $value);
14}
15
161;