allPrincipalIDs returns the IDs of all users and roles, including deleted Roles
(ctx context.Context)
| 141 | |
| 142 | // allPrincipalIDs returns the IDs of all users and roles, including deleted Roles |
| 143 | func (c *DatabaseCollection) allPrincipalIDs(ctx context.Context) (users, roles []string, err error) { |
| 144 | return c.dbCtx.AllPrincipalIDs(ctx) |
| 145 | } |
| 146 | |
| 147 | // Authenticator returns authentication options associated with the collection's database. |
| 148 | func (c *DatabaseCollection) Authenticator(ctx context.Context) *auth.Authenticator { |
no test coverage detected