mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
5699fe80d5
* feat: check oidc compliance * fix: add tests * fix: add oidc config tests * fix: add oidc config tests user agent * fix: test oidc config compliance * fix: test oidc config compliance * fix: useragent implicit authmethod none * fix: merge master * feat: translate compliance problems * feat: check native app for custom url * fix: better compliance handling * fix: better compliance handling * feat: add odidc dev mode * fix: remove deprecated request fro management api * fix: oidc package version * fix: migration * fix: tests * fix: remove unused functions * fix: generate proto files * fix: native implicit and code none compliant * fix: create project * Update internal/project/model/oidc_config_test.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: tests * Update internal/project/model/oidc_config.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/project/model/oidc_config.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: tests Co-authored-by: Livio Amstutz <livio.a@gmail.com>
18 lines
395 B
Go
18 lines
395 B
Go
package message
|
|
|
|
func (m *LocalizedMessage) LocalizationKey() string {
|
|
return m.Key
|
|
}
|
|
|
|
func (m *LocalizedMessage) SetLocalizedMessage(message string) {
|
|
m.LocalizedMessage = message
|
|
}
|
|
|
|
func NewLocalizedEventType(key string) *LocalizedMessage {
|
|
return &LocalizedMessage{Key: "EventTypes." + key}
|
|
}
|
|
|
|
func NewLocalizedMessage(key string) *LocalizedMessage {
|
|
return &LocalizedMessage{Key: key}
|
|
}
|