member_at starting to work
[scpubgit/DX.git] / lib / DX / Action / SetValue.pm
CommitLineData
efad53c4 1package DX::Action::SetValue;
2
3use DX::Update::SetValue;
4use DX::Class;
5
0498469a 6with 'DX::Role::SimpleAction';
efad53c4 7
8has new_value => (is => 'ro', required => 1);
9
0498469a 10sub _build__updates {
efad53c4 11 my ($self) = @_;
12 DX::Update::SetValue->new(
13 target_path => $self->target_path,
14 new_value => $self->new_value,
15 );
16}
17
181;