Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
b7afadb
feature: send email to internal users of circles when shared with circle
yemkareems Jun 30, 2025
80d58ff
fix: add FileCopyrightText and License-Identifier
yemkareems Jun 30, 2025
222e3d2
fix: refactored service to mail provider and tests adjusted accordingly
yemkareems Jun 30, 2025
a10022d
fix: refactor ShareByCircleProvider class to implement IShareProvider…
yemkareems Jul 1, 2025
e50f772
fix: move helper functions to provider, remove the helper class and r…
yemkareems Jul 1, 2025
0722d76
fix: composer run cs fix
yemkareems Jul 1, 2025
81e87c0
fix: removed the check sharing.enable_share_mail as it is already done
yemkareems Jul 8, 2025
7d2a2a5
fix: removed the DefaultShareProvider dependency for psalm
yemkareems Jul 8, 2025
787bcb4
Merge branch 'master' into feature/notify-internal-users-on-circle-share
yemkareems Jul 9, 2025
bc31bc1
fix: removed comment, corrected text, used user type constant, if con…
yemkareems Jul 16, 2025
05fb5ae
Merge branch 'feature/notify-internal-users-on-circle-share' of githu…
yemkareems Jul 16, 2025
23db5ad
Merge branch 'master' into feature/notify-internal-users-on-circle-share
yemkareems Jul 16, 2025
82acf7c
fix: note was not getting sent in email
yemkareems Jul 23, 2025
4ad4380
fix: initiator moved outside the loop, member check refactored to not…
yemkareems Aug 3, 2025
bb52de4
fix: moved sending email to ShareCreatedSendMail and removed mail sen…
yemkareems Aug 11, 2025
a9a459c
fix: cs fix
yemkareems Aug 11, 2025
c5828fc
fix: user type added to getInheritedMembers, member isLocal check add…
yemkareems Aug 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: cs fix
Signed-off-by: yemkareems <[email protected]>
  • Loading branch information
yemkareems committed Aug 11, 2025
commit a9a459ca23301e55efd3bfd5dfb96c166a5db689
3 changes: 1 addition & 2 deletions lib/Listeners/Files/ShareCreatedSendMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ public function __construct(
* @throws RequestBuilderException
* @throws UnknownRemoteException
*/
public function handle(Event $event): void
{
public function handle(Event $event): void {
if (!$event instanceof FileShareCreatedEvent) {
return;
}
Expand Down
Loading