MCPcopy Create free account
hub / github.com/bytebase/bytebase / decodeGroupIdentifier

Function decodeGroupIdentifier

backend/api/directory-sync/webhook.go:884–890  ·  view source on GitHub ↗
(groupID string)

Source from the content-addressed store, hash-verified

882}
883
884func decodeGroupIdentifier(groupID string) (string, error) {
885 identifier, err := url.QueryUnescape(groupID)
886 if err != nil {
887 return "", errors.Wrapf(err, "failed to decode group id %s", groupID)
888 }
889 return identifier, nil
890}
891
892func (s *Service) getGroupMember(ctx context.Context, memberValue any) (*storepb.GroupMember, error) {
893 var scimMember SCIMMember

Callers 1

getGroupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected