Log sharing and unsharing with a room in the auditing app
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
30d8e3ee05
commit
0fab46c817
|
@ -78,6 +78,19 @@ class Sharing extends Action {
|
||||||
'id',
|
'id',
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
} elseif($params['shareType'] === Share::SHARE_TYPE_ROOM) {
|
||||||
|
$this->log(
|
||||||
|
'The %s "%s" with ID "%s" has been shared to the room "%s" with permissions "%s" (Share ID: %s)',
|
||||||
|
$params,
|
||||||
|
[
|
||||||
|
'itemType',
|
||||||
|
'itemTarget',
|
||||||
|
'itemSource',
|
||||||
|
'shareWith',
|
||||||
|
'permissions',
|
||||||
|
'id',
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,6 +135,18 @@ class Sharing extends Action {
|
||||||
'id',
|
'id',
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
} elseif($params['shareType'] === Share::SHARE_TYPE_ROOM) {
|
||||||
|
$this->log(
|
||||||
|
'The %s "%s" with ID "%s" has been unshared from the room "%s" (Share ID: %s)',
|
||||||
|
$params,
|
||||||
|
[
|
||||||
|
'itemType',
|
||||||
|
'fileTarget',
|
||||||
|
'itemSource',
|
||||||
|
'shareWith',
|
||||||
|
'id',
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue