mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 19:47:32 +00:00

## Which problems are solved The execution of statements of projections did not have the context present. ## How the problems were solved Pass the context to the execute function ## Additional info This change is required to use the repositories of the relational tables in projections.
15 lines
318 B
Go
15 lines
318 B
Go
package handler
|
|
|
|
import "context"
|
|
|
|
// Init initializes the projection with the given check
|
|
type Init func(context.Context, *Check) error
|
|
|
|
type Check struct {
|
|
Executes []func(ctx context.Context, executer Executer, projectionName string) (bool, error)
|
|
}
|
|
|
|
func (c *Check) IsNoop() bool {
|
|
return len(c.Executes) == 0
|
|
}
|