mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 11:37:32 +00:00
Merge branch 'main' into rc
This commit is contained in:
5
.github/ISSUE_TEMPLATE/config.yml
vendored
5
.github/ISSUE_TEMPLATE/config.yml
vendored
@@ -1,10 +1,7 @@
|
|||||||
blank_issues_enabled: true
|
blank_issues_enabled: true
|
||||||
contact_links:
|
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
|
- name: ❓ Questions
|
||||||
url: https://github.com/zitadel/zitadel/discussions/categories/q-a
|
url: https://github.com/zitadel/zitadel/discussions/categories/q-a
|
||||||
about: Ask for help in our Q&A discussions
|
about: Ask for help in our Q&A discussions
|
||||||
- name: 💬 ZITADEL Chat
|
- name: 💬 ZITADEL Community Chat
|
||||||
url: https://zitadel.com/chat
|
url: https://zitadel.com/chat
|
||||||
|
1
.github/ISSUE_TEMPLATE/docs.yaml
vendored
1
.github/ISSUE_TEMPLATE/docs.yaml
vendored
@@ -1,6 +1,5 @@
|
|||||||
name: 📄 Documentation
|
name: 📄 Documentation
|
||||||
description: Create an issue for missing or wrong documentation.
|
description: Create an issue for missing or wrong documentation.
|
||||||
title:
|
|
||||||
labels: ["docs"]
|
labels: ["docs"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
|
3
.github/ISSUE_TEMPLATE/improvement.yaml
vendored
3
.github/ISSUE_TEMPLATE/improvement.yaml
vendored
@@ -1,6 +1,5 @@
|
|||||||
name: 🛠️ Improvement
|
name: 🛠️ Improvement
|
||||||
description:
|
description: "Create an new issue for an improvment in ZITADEL"
|
||||||
title:
|
|
||||||
labels: ["improvement"]
|
labels: ["improvement"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
|
3
.github/ISSUE_TEMPLATE/proposal.yaml
vendored
3
.github/ISSUE_TEMPLATE/proposal.yaml
vendored
@@ -1,6 +1,5 @@
|
|||||||
name: 💡 Proposal / Feature request
|
name: 💡 Proposal / Feature request
|
||||||
description:
|
description: "Create an issue for a feature request/proposal."
|
||||||
title:
|
|
||||||
labels: ["enhancement"]
|
labels: ["enhancement"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
|
@@ -351,6 +351,10 @@ func (p *idpTemplateProjection) reducers() []handler.AggregateReducer {
|
|||||||
Event: instance.OIDCIDPMigratedAzureADEventType,
|
Event: instance.OIDCIDPMigratedAzureADEventType,
|
||||||
Reduce: p.reduceOIDCIDPMigratedAzureAD,
|
Reduce: p.reduceOIDCIDPMigratedAzureAD,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Event: instance.OIDCIDPMigratedGoogleEventType,
|
||||||
|
Reduce: p.reduceOIDCIDPMigratedGoogle,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Event: instance.JWTIDPAddedEventType,
|
Event: instance.JWTIDPAddedEventType,
|
||||||
Reduce: p.reduceJWTIDPAdded,
|
Reduce: p.reduceJWTIDPAdded,
|
||||||
@@ -472,6 +476,14 @@ func (p *idpTemplateProjection) reducers() []handler.AggregateReducer {
|
|||||||
Event: org.OIDCIDPChangedEventType,
|
Event: org.OIDCIDPChangedEventType,
|
||||||
Reduce: p.reduceOIDCIDPChanged,
|
Reduce: p.reduceOIDCIDPChanged,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Event: org.OIDCIDPMigratedAzureADEventType,
|
||||||
|
Reduce: p.reduceOIDCIDPMigratedAzureAD,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Event: org.OIDCIDPMigratedGoogleEventType,
|
||||||
|
Reduce: p.reduceOIDCIDPMigratedGoogle,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Event: org.JWTIDPAddedEventType,
|
Event: org.JWTIDPAddedEventType,
|
||||||
Reduce: p.reduceJWTIDPAdded,
|
Reduce: p.reduceJWTIDPAdded,
|
||||||
|
@@ -263,7 +263,7 @@ func NewOIDCIDPMigratedGoogleEvent(
|
|||||||
eventstore.NewBaseEventForPush(
|
eventstore.NewBaseEventForPush(
|
||||||
ctx,
|
ctx,
|
||||||
aggregate,
|
aggregate,
|
||||||
OIDCIDPMigratedAzureADEventType,
|
OIDCIDPMigratedGoogleEventType,
|
||||||
),
|
),
|
||||||
id,
|
id,
|
||||||
name,
|
name,
|
||||||
|
Reference in New Issue
Block a user