mirror of
				https://github.com/zitadel/zitadel.git
				synced 2025-11-04 05:52: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
		
			
				
	
	
		
			36 lines
		
	
	
		
			929 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			929 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package command
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"github.com/caos/logging"
 | 
						|
	"github.com/caos/zitadel/internal/domain"
 | 
						|
	"github.com/caos/zitadel/internal/eventstore"
 | 
						|
)
 | 
						|
 | 
						|
type Step17 struct {
 | 
						|
	PrivacyPolicy domain.PrivacyPolicy
 | 
						|
}
 | 
						|
 | 
						|
func (s *Step17) Step() domain.Step {
 | 
						|
	return domain.Step17
 | 
						|
}
 | 
						|
 | 
						|
func (s *Step17) execute(ctx context.Context, commandSide *Commands) error {
 | 
						|
	return commandSide.SetupStep17(ctx, s)
 | 
						|
}
 | 
						|
 | 
						|
func (c *Commands) SetupStep17(ctx context.Context, step *Step17) error {
 | 
						|
	fn := func(iam *IAMWriteModel) ([]eventstore.EventPusher, error) {
 | 
						|
		iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
 | 
						|
		addedPolicy := NewIAMPrivacyPolicyWriteModel()
 | 
						|
		events, err := c.addDefaultPrivacyPolicy(ctx, iamAgg, addedPolicy, &step.PrivacyPolicy)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
 | 
						|
		logging.Log("SETUP-N9sq2").Info("default privacy policy set up")
 | 
						|
		return []eventstore.EventPusher{events}, nil
 | 
						|
	}
 | 
						|
	return c.setup(ctx, step, fn)
 | 
						|
}
 |