aboutsummaryrefslogtreecommitdiffstats
path: root/services/org/team_invite.go
diff options
context:
space:
mode:
Diffstat (limited to 'services/org/team_invite.go')
-rw-r--r--services/org/team_invite.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/services/org/team_invite.go b/services/org/team_invite.go
new file mode 100644
index 0000000000..1108a46da5
--- /dev/null
+++ b/services/org/team_invite.go
@@ -0,0 +1,23 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package org
+
+import (
+ "context"
+
+ org_model "code.gitea.io/gitea/models/organization"
+ user_model "code.gitea.io/gitea/models/user"
+ "code.gitea.io/gitea/services/mailer"
+)
+
+// CreateTeamInvite make a persistent invite in db and mail it
+func CreateTeamInvite(ctx context.Context, inviter *user_model.User, team *org_model.Team, uname string) error {
+ invite, err := org_model.CreateTeamInvite(ctx, inviter, team, uname)
+ if err != nil {
+ return err
+ }
+
+ return mailer.MailTeamInvite(ctx, inviter, team, invite)
+}