mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
22 lines
606 B
Go
22 lines
606 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
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)
|
|
}
|