mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-27 15:19:41 +00:00
Files
73d37459bb9852bfa56c97eda4111da3baef2b38
11 lines
372 B
Go
11 lines
372 B
Go
package view
|
|||
|
|||
import (
|
|||
"github.com/caos/zitadel/internal/iam/repository/view"
|
|||
"github.com/caos/zitadel/internal/iam/repository/view/model"
|
|||
)
|
|||
|
|||
func (v *View) MailTextByIDs(aggregateID string, textType string, language string, mailTextTableVar string) (*model.MailTextView, error) {
|
|||
return view.GetMailTextByIDs(v.Db, mailTextTableVar, aggregateID, textType, language)
|
|||
}
|