Fix triggers for updating storage permissions when asset permissions change.
This commit is contained in:
parent
3500b6afc7
commit
ae8ed52647
3 changed files with 6 additions and 4 deletions
|
|
@ -127,7 +127,7 @@ property ownerUserId => (
|
|||
uiLevel => 6,
|
||||
fieldType => 'user',
|
||||
default => '3',
|
||||
trigger => \&_set_ownerUserId,
|
||||
trigger => sub { shift->_set_ownerUserId(@_) } ,
|
||||
);
|
||||
sub _set_ownerUserId {
|
||||
return;
|
||||
|
|
@ -139,7 +139,7 @@ property groupIdView => (
|
|||
uiLevel => 6,
|
||||
fieldType => 'group',
|
||||
default => '7',
|
||||
trigger => \&_set_groupIdView,
|
||||
trigger => sub { shift->_set_groupIdView(@_) },
|
||||
);
|
||||
sub _set_groupIdView {
|
||||
return;
|
||||
|
|
@ -152,7 +152,7 @@ property groupIdEdit => (
|
|||
uiLevel => 6,
|
||||
fieldType => 'group',
|
||||
default => '4',
|
||||
trigger => \&_set_groupIdEdit,
|
||||
trigger => sub { shift->_set_groupIdEdit(@_) } ,
|
||||
);
|
||||
sub _set_groupIdEdit {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue