diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-08-24 08:08:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-24 08:08:00 -0700 |
commit | 2004fa79e6ae7645d964a03e2ae2dd808f7d486a (patch) | |
tree | 64f3d5291d6957bd57fdb168b6aa10452f0fa1cb /api/graphql/models | |
parent | 63295b1106e0ad01bc1e0d682b71df14558b293a (diff) | |
download | git-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.tar.gz |
feat: update references to the git-bug organization (#1249)
The repository was recently moved to the git-bug organization on github.
This change refactors references to the repository to ensure that they
use the updated owner URI.
Closes: #1243
Change-Id: I799712354c6ba25cdd8b06286275850c52efe6ff
Diffstat (limited to 'api/graphql/models')
-rw-r--r-- | api/graphql/models/gen_models.go | 6 | ||||
-rw-r--r-- | api/graphql/models/lazy_bug.go | 10 | ||||
-rw-r--r-- | api/graphql/models/lazy_identity.go | 6 | ||||
-rw-r--r-- | api/graphql/models/models.go | 2 |
4 files changed, 12 insertions, 12 deletions
diff --git a/api/graphql/models/gen_models.go b/api/graphql/models/gen_models.go index 000f4a10..a63233a1 100644 --- a/api/graphql/models/gen_models.go +++ b/api/graphql/models/gen_models.go @@ -3,9 +3,9 @@ package models import ( - "github.com/MichaelMure/git-bug/entities/bug" - "github.com/MichaelMure/git-bug/entity/dag" - "github.com/MichaelMure/git-bug/repository" + "github.com/git-bug/git-bug/entities/bug" + "github.com/git-bug/git-bug/entity/dag" + "github.com/git-bug/git-bug/repository" ) // An object that has an author. diff --git a/api/graphql/models/lazy_bug.go b/api/graphql/models/lazy_bug.go index 4b0b598e..a843c97a 100644 --- a/api/graphql/models/lazy_bug.go +++ b/api/graphql/models/lazy_bug.go @@ -4,11 +4,11 @@ import ( "sync" "time" - "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/entities/bug" - "github.com/MichaelMure/git-bug/entities/common" - "github.com/MichaelMure/git-bug/entity" - "github.com/MichaelMure/git-bug/entity/dag" + "github.com/git-bug/git-bug/cache" + "github.com/git-bug/git-bug/entities/bug" + "github.com/git-bug/git-bug/entities/common" + "github.com/git-bug/git-bug/entity" + "github.com/git-bug/git-bug/entity/dag" ) // BugWrapper is an interface used by the GraphQL resolvers to handle a bug. diff --git a/api/graphql/models/lazy_identity.go b/api/graphql/models/lazy_identity.go index c19d077b..a131d450 100644 --- a/api/graphql/models/lazy_identity.go +++ b/api/graphql/models/lazy_identity.go @@ -4,9 +4,9 @@ import ( "fmt" "sync" - "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/entities/identity" - "github.com/MichaelMure/git-bug/entity" + "github.com/git-bug/git-bug/cache" + "github.com/git-bug/git-bug/entities/identity" + "github.com/git-bug/git-bug/entity" ) // IdentityWrapper is an interface used by the GraphQL resolvers to handle an identity. diff --git a/api/graphql/models/models.go b/api/graphql/models/models.go index 816a04a8..5355b722 100644 --- a/api/graphql/models/models.go +++ b/api/graphql/models/models.go @@ -2,7 +2,7 @@ package models import ( - "github.com/MichaelMure/git-bug/cache" + "github.com/git-bug/git-bug/cache" ) type ConnectionInput struct { |