summaryrefslogtreecommitdiffstatshomepage
path: root/api/graphql
diff options
context:
space:
mode:
Diffstat (limited to 'api/graphql')
-rw-r--r--api/graphql/models/lazy_identity.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/graphql/models/lazy_identity.go b/api/graphql/models/lazy_identity.go
index c19d077bd..efc102a8c 100644
--- a/api/graphql/models/lazy_identity.go
+++ b/api/graphql/models/lazy_identity.go
@@ -111,10 +111,10 @@ func (li *lazyIdentity) IsProtected() (bool, error) {
var _ IdentityWrapper = &loadedIdentity{}
type loadedIdentity struct {
- identity.Interface
+ entity.Identity
}
-func NewLoadedIdentity(id identity.Interface) *loadedIdentity {
+func NewLoadedIdentity(id entity.Identity) *loadedIdentity {
return &loadedIdentity{Interface: id}
}