mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-24 20:11:33 +00:00
11 lines
349 B
Go
11 lines
349 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) LabelPolicyByAggregateID(aggregateID string, labelPolicyTableVar string) (*model.LabelPolicyView, error) {
|
||
|
return view.GetLabelPolicyByAggregateID(v.Db, labelPolicyTableVar, aggregateID)
|
||
|
}
|