mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 00:47:33 +00:00
fix(notify): notify user in projection (#3889)
* start implement notify user in projection * fix(stmt): add copy to multi stmt * use projections for notify users * feat: notifications from projections * feat: notifications from projections * cleanup * pre-release * fix tests * fix types * fix command * fix queryNotifyUser * fix: build version * fix: HumanPasswordlessInitCodeSent Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
This commit is contained in:
@@ -358,6 +358,32 @@ func (p *labelPolicyProjection) reduceActivated(event eventstore.Event) (*handle
|
||||
handler.NewCol(LabelPolicyDarkLogoURLCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkIconURLCol, nil),
|
||||
},
|
||||
[]handler.Column{
|
||||
handler.NewCol(LabelPolicyChangeDateCol, nil),
|
||||
handler.NewCol(LabelPolicySequenceCol, nil),
|
||||
handler.NewCol(LabelPolicyStateCol, nil),
|
||||
handler.NewCol(LabelPolicyCreationDateCol, nil),
|
||||
handler.NewCol(LabelPolicyResourceOwnerCol, nil),
|
||||
handler.NewCol(LabelPolicyInstanceIDCol, nil),
|
||||
handler.NewCol(LabelPolicyIDCol, nil),
|
||||
handler.NewCol(LabelPolicyIsDefaultCol, nil),
|
||||
handler.NewCol(LabelPolicyHideLoginNameSuffixCol, nil),
|
||||
handler.NewCol(LabelPolicyFontURLCol, nil),
|
||||
handler.NewCol(LabelPolicyWatermarkDisabledCol, nil),
|
||||
handler.NewCol(LabelPolicyShouldErrorPopupCol, nil),
|
||||
handler.NewCol(LabelPolicyLightPrimaryColorCol, nil),
|
||||
handler.NewCol(LabelPolicyLightWarnColorCol, nil),
|
||||
handler.NewCol(LabelPolicyLightBackgroundColorCol, nil),
|
||||
handler.NewCol(LabelPolicyLightFontColorCol, nil),
|
||||
handler.NewCol(LabelPolicyLightLogoURLCol, nil),
|
||||
handler.NewCol(LabelPolicyLightIconURLCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkPrimaryColorCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkWarnColorCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkBackgroundColorCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkFontColorCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkLogoURLCol, nil),
|
||||
handler.NewCol(LabelPolicyDarkIconURLCol, nil),
|
||||
},
|
||||
[]handler.Condition{
|
||||
handler.NewCond(LabelPolicyIDCol, event.Aggregate().ID),
|
||||
handler.NewCond(LabelPolicyStateCol, domain.LabelPolicyStatePreview),
|
||||
|
Reference in New Issue
Block a user