Merge branch 'main' into rc

This commit is contained in:
adlerhurst
2023-06-09 08:49:16 +02:00
6 changed files with 16 additions and 10 deletions

View File

@@ -1,10 +1,7 @@
blank_issues_enabled: true
contact_links:
- name: 🚀 Feature Request
url: https://github.com/zitadel/zitadel/discussions/categories/ideas
about: Tell us about your idea in the discussions
- name: ❓ Questions
url: https://github.com/zitadel/zitadel/discussions/categories/q-a
about: Ask for help in our Q&A discussions
- name: 💬 ZITADEL Chat
- name: 💬 ZITADEL Community Chat
url: https://zitadel.com/chat

View File

@@ -1,6 +1,5 @@
name: 📄 Documentation
description: Create an issue for missing or wrong documentation.
title:
labels: ["docs"]
body:
- type: markdown

View File

@@ -1,6 +1,5 @@
name: 🛠️ Improvement
description:
title:
description: "Create an new issue for an improvment in ZITADEL"
labels: ["improvement"]
body:
- type: markdown

View File

@@ -1,6 +1,5 @@
name: 💡 Proposal / Feature request
description:
title:
description: "Create an issue for a feature request/proposal."
labels: ["enhancement"]
body:
- type: markdown

View File

@@ -351,6 +351,10 @@ func (p *idpTemplateProjection) reducers() []handler.AggregateReducer {
Event: instance.OIDCIDPMigratedAzureADEventType,
Reduce: p.reduceOIDCIDPMigratedAzureAD,
},
{
Event: instance.OIDCIDPMigratedGoogleEventType,
Reduce: p.reduceOIDCIDPMigratedGoogle,
},
{
Event: instance.JWTIDPAddedEventType,
Reduce: p.reduceJWTIDPAdded,
@@ -472,6 +476,14 @@ func (p *idpTemplateProjection) reducers() []handler.AggregateReducer {
Event: org.OIDCIDPChangedEventType,
Reduce: p.reduceOIDCIDPChanged,
},
{
Event: org.OIDCIDPMigratedAzureADEventType,
Reduce: p.reduceOIDCIDPMigratedAzureAD,
},
{
Event: org.OIDCIDPMigratedGoogleEventType,
Reduce: p.reduceOIDCIDPMigratedGoogle,
},
{
Event: org.JWTIDPAddedEventType,
Reduce: p.reduceJWTIDPAdded,

View File

@@ -263,7 +263,7 @@ func NewOIDCIDPMigratedGoogleEvent(
eventstore.NewBaseEventForPush(
ctx,
aggregate,
OIDCIDPMigratedAzureADEventType,
OIDCIDPMigratedGoogleEventType,
),
id,
name,