1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00

remove name from team invitation template

This commit is contained in:
Torsten Dittmann 2020-06-12 04:27:11 +02:00
parent 9426fca12a
commit bab6ae3b79
2 changed files with 1 additions and 2 deletions

View file

@ -1,5 +1,5 @@
<p>
Hello {{name}},
Hello,
</p>
<p>
This mail was sent to you because <b>{{owner}}</b> wanted to invite you to become a team member at the <b>{{team}}</b> team over at {{project}}.

View file

@ -328,7 +328,6 @@ $utopia->post('/v1/teams/:teamId/memberships')
->setParam('{{project}}', $project->getAttribute('name', ['[APP-NAME]']))
->setParam('{{team}}', $team->getAttribute('name', '[TEAM-NAME]'))
->setParam('{{owner}}', $user->getAttribute('name', ''))
->setParam('{{name}}', $name)
->setParam('{{redirect}}', $url)
;