mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-06 10:55:51 +00:00

* feat: command side privacy policy * feat: add privacy policy to api * feat: add privacy policy query side * fix: add privacy policy to mgmt api * fix: add privacy policy to auth and base data * feat: use privacyPolicy in login gui * feat: use privacyPolicy in login gui * feat: test org fatures * feat: typos * feat: tos in register
16 lines
319 B
Go
16 lines
319 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
func (l *Login) getDefaultPrivacyPolicy(r *http.Request) (*iam_model.PrivacyPolicyView, error) {
|
|
policy, err := l.authRepo.GetDefaultPrivacyPolicy(r.Context())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return policy, nil
|
|
}
|