mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
87c1dfa3aa
* fix: uniqueconstraint to lower * feat: change org * feat: org change test * feat: change org * fix: tests * fix: handle domain claims correctly * feat: update org Co-authored-by: fabi <fabienne.gerschwiler@gmail.com>
13 lines
194 B
Go
13 lines
194 B
Go
package repository
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
Health(ctx context.Context) error
|
|
OrgRepository
|
|
IAMRepository
|
|
AdministratorRepository
|
|
FeaturesRepository
|
|
UserRepository
|
|
}
|