google: support groups for users outside of the organization (#2950)

* google: support groups for users outside of the organization

* wrap error
This commit is contained in:
Caleb Doxsey 2022-01-21 09:36:32 -07:00 committed by GitHub
parent 9f4fc986ee
commit ed6c3e5087
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 89 additions and 38 deletions

View file

@ -0,0 +1,8 @@
// Package directoryerrors contains errors used by directory providers.
package directoryerrors
import "errors"
// ErrPreferExistingInformation indicates that the information returned by the provider should
// only be used if a record is brand new, otherwise the existing information should be kept as is.
var ErrPreferExistingInformation = errors.New("user ignored")