Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notifications still refer to circles instead of teams? #1652

Closed
nickvergessen opened this issue Jul 31, 2024 · 0 comments · Fixed by #1704
Closed

Notifications still refer to circles instead of teams? #1652

nickvergessen opened this issue Jul 31, 2024 · 0 comments · Fixed by #1704

Comments

@nickvergessen
Copy link
Member

case 'memberAdd':
$subject = $this->l10n->t(
'You are now a member of the Circle "%2$s"',
[
$member->getCircle()->getDisplayName()
]
);
break;
case 'invitation':
$subject = $this->l10n->t(
'You have been invited by %1$s into the Circle "%2$s"',
[
$member->getInvitedBy()->getDisplayName(),
$member->getCircle()->getDisplayName()
]
);
break;
case 'joinRequest':
$subject = $this->l10n->t(
'%1$s sent a request to be a member of the Circle "%2$s"',
[
$this->configService->displayFederatedUser($member, true),
$member->getCircle()->getDisplayName()
]
);
break;

backportbot bot pushed a commit that referenced this issue Oct 2, 2024
Fixes #1652 

Signed-off-by: Josh <josh.t.richards@gmail.com>
ArtificialOwl pushed a commit that referenced this issue Oct 22, 2024
Fixes #1652 

Signed-off-by: Josh <josh.t.richards@gmail.com>
ArtificialOwl pushed a commit that referenced this issue Oct 22, 2024
Fixes #1652 

Signed-off-by: Josh <josh.t.richards@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants