(ctx context.Context)
| 2248 | } |
| 2249 | |
| 2250 | func (dbc *DatabaseContext) AuthenticatorOptions(ctx context.Context) auth.AuthenticatorOptions { |
| 2251 | defaultOptions := auth.DefaultAuthenticatorOptions(ctx) |
| 2252 | defaultOptions.MetaKeys = dbc.MetadataKeys |
| 2253 | return defaultOptions |
| 2254 | } |
| 2255 | |
| 2256 | // GetRequestPlusSequence fetches the current value of the sequence counter for the database. |
| 2257 | // Uses getSequence (instead of lastSequence) as it's intended to be up to date with allocations |