mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-08 19:08:41 +00:00
11 lines
252 B
Go
11 lines
252 B
Go
![]() |
package handler
|
||
|
|
||
|
import (
|
||
|
org_model "github.com/caos/zitadel/internal/org/model"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func (l *Login) getOrgIamPolicy(r *http.Request, orgID string) (*org_model.OrgIamPolicy, error) {
|
||
|
return l.authRepo.GetOrgIamPolicy(r.Context(), orgID)
|
||
|
}
|