aboutsummaryrefslogtreecommitdiffstats
path: root/api/graphql/resolvers/identity.go
blob: b9a1828f54524e7cdd62b52c6f77c9963a0f0a7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package resolvers

import (
	"context"

	"github.com/git-bug/git-bug/api/graphql/graph"
	"github.com/git-bug/git-bug/api/graphql/models"
)

var _ graph.IdentityResolver = &identityResolver{}

type identityResolver struct{}

func (r identityResolver) HumanID(ctx context.Context, obj models.IdentityWrapper) (string, error) {
	return obj.Id().Human(), nil

}