mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 03:37:34 +00:00
fix: set quotas (#6597)
* feat: set quotas
* fix: start new period on younger anchor
* cleanup e2e config
* fix set notifications
* lint
* test: fix quota projection tests
* fix add quota tests
* make quota fields nullable
* enable amount 0
* fix initial setup
* create a prerelease
* avoid success comments
* fix quota projection primary key
* Revert "fix quota projection primary key"
This reverts commit e72f4d7fa1
.
* simplify write model
* fix aggregate id
* avoid push without changes
* test set quota lifecycle
* test set quota mutations
* fix quota unit test
* fix: quotas
* test quota.set event projection
* use SetQuota in integration tests
* fix: release quotas 3
* reset releaserc
* fix comment
* test notification order doesn't matter
* test notification order doesn't matter
* test with unmarshalled events
* test with unmarshalled events
This commit is contained in:
@@ -3,17 +3,27 @@ package system
|
||||
import (
|
||||
"github.com/zitadel/zitadel/internal/command"
|
||||
"github.com/zitadel/zitadel/pkg/grpc/quota"
|
||||
"github.com/zitadel/zitadel/pkg/grpc/system"
|
||||
"google.golang.org/protobuf/types/known/durationpb"
|
||||
"google.golang.org/protobuf/types/known/timestamppb"
|
||||
)
|
||||
|
||||
func instanceQuotaPbToCommand(req *system.AddQuotaRequest) *command.AddQuota {
|
||||
return &command.AddQuota{
|
||||
Unit: instanceQuotaUnitPbToCommand(req.Unit),
|
||||
From: req.From.AsTime(),
|
||||
ResetInterval: req.ResetInterval.AsDuration(),
|
||||
Amount: req.Amount,
|
||||
Limit: req.Limit,
|
||||
Notifications: instanceQuotaNotificationsPbToCommand(req.Notifications),
|
||||
type setQuotaRequest interface {
|
||||
GetUnit() quota.Unit
|
||||
GetFrom() *timestamppb.Timestamp
|
||||
GetResetInterval() *durationpb.Duration
|
||||
GetAmount() uint64
|
||||
GetLimit() bool
|
||||
GetNotifications() []*quota.Notification
|
||||
}
|
||||
|
||||
func instanceQuotaPbToCommand(req setQuotaRequest) *command.SetQuota {
|
||||
return &command.SetQuota{
|
||||
Unit: instanceQuotaUnitPbToCommand(req.GetUnit()),
|
||||
From: req.GetFrom().AsTime(),
|
||||
ResetInterval: req.GetResetInterval().AsDuration(),
|
||||
Amount: req.GetAmount(),
|
||||
Limit: req.GetLimit(),
|
||||
Notifications: instanceQuotaNotificationsPbToCommand(req.GetNotifications()),
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user