初始提交: Gitea 项目代码
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// Copyright 2022 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package org
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
org_model "gitea.dev/models/organization"
|
||||
user_model "gitea.dev/models/user"
|
||||
"gitea.dev/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)
|
||||
}
|
||||
Reference in New Issue
Block a user