mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
5d3d957756
11 lines
354 B
Go
11 lines
354 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) MailTemplateByAggregateID(aggregateID string, mailTemplateTableVar string) (*model.MailTemplateView, error) {
|
|||
return view.GetMailTemplateByAggregateID(v.Db, mailTemplateTableVar, aggregateID)
|
|||
}
|