mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 15:03:12 +00:00
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)
|
||
|
|
}
|