mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
ffefd0caf2
implements: https://github.com/meilisearch/specifications/blob/develop/text/0085-api-keys.md - Add tests on API keys management route (meilisearch-http/tests/auth/api_keys.rs) - Add tests checking authorizations on each meilisearch routes (meilisearch-http/tests/auth/authorization.rs) - Implement API keys management routes (meilisearch-http/src/routes/api_key.rs) - Create module to manage API keys and authorizations (meilisearch-auth) - Reimplement GuardedData to extend authorizations (meilisearch-http/src/extractors/authentication/mod.rs) - Change X-MEILI-API-KEY by Authorization Bearer (meilisearch-http/src/extractors/authentication/mod.rs) - Change meilisearch routes to fit to the new authorization feature (meilisearch-http/src/routes/) - close #1867
17 lines
412 B
Rust
17 lines
412 B
Rust
mod auth;
|
|
mod common;
|
|
mod dashboard;
|
|
mod documents;
|
|
mod index;
|
|
mod search;
|
|
mod settings;
|
|
mod snapshot;
|
|
mod stats;
|
|
mod tasks;
|
|
|
|
// Tests are isolated by features in different modules to allow better readability, test
|
|
// targetability, and improved incremental compilation times.
|
|
//
|
|
// All the integration tests live in the same root module so only one test executable is generated,
|
|
// thus improving linking time.
|