chore(v2): move to new org (#3499)

* chore: move to new org

* logging

* fix: org rename caos -> zitadel

Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
This commit is contained in:
Florian Forster
2022-04-27 01:01:45 +02:00
committed by GitHub
parent b867eff84c
commit fa9f581d56
1284 changed files with 5073 additions and 5040 deletions

View File

@@ -3,7 +3,7 @@ package models
import (
"time"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
type AggregateType string

View File

@@ -3,7 +3,7 @@ package models
import (
"context"
"github.com/caos/zitadel/internal/api/authz"
"github.com/zitadel/zitadel/internal/api/authz"
)
type AggregateCreator struct {

View File

@@ -3,7 +3,7 @@ package models
import (
"testing"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
func TestAggregate_AppendEvent(t *testing.T) {

View File

@@ -5,7 +5,7 @@ import (
"reflect"
"time"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
type EventType string

View File

@@ -1,7 +1,7 @@
package models
import (
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
type Filter struct {

View File

@@ -3,9 +3,9 @@ package models
import (
"time"
"github.com/caos/logging"
"github.com/zitadel/logging"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
type SearchQueryFactory struct {

View File

@@ -3,7 +3,7 @@ package models
import (
"time"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
//SearchQuery is deprecated. Use SearchQueryFactory

View File

@@ -4,7 +4,7 @@ import (
"reflect"
"testing"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
func testSetColumns(columns Columns) func(factory *SearchQueryFactory) *SearchQueryFactory {

View File

@@ -3,7 +3,7 @@ package models
import (
"regexp"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/errors"
)
var versionRegexp = regexp.MustCompile(`^v[0-9]+(\.[0-9]+){0,2}$`)