mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Ran formatter on the code.
This commit is contained in:
parent
9a8fb6c55a
commit
6f910f89eb
2 changed files with 6 additions and 2 deletions
|
@ -93,7 +93,11 @@ impl HeedAuthStore {
|
||||||
} else if key.actions.contains(&Action::DocumentsAll) {
|
} else if key.actions.contains(&Action::DocumentsAll) {
|
||||||
// if key.actions.contains.DocumentsAll add all actions related to documents.
|
// if key.actions.contains.DocumentsAll add all actions related to documents.
|
||||||
let mut actions = key.actions.clone();
|
let mut actions = key.actions.clone();
|
||||||
actions.append(&mut vec![Action::DocumentsAdd, Action::DocumentsGet, Action::DocumentsDelete]);
|
actions.append(&mut vec![
|
||||||
|
Action::DocumentsAdd,
|
||||||
|
Action::DocumentsGet,
|
||||||
|
Action::DocumentsDelete,
|
||||||
|
]);
|
||||||
actions
|
actions
|
||||||
} else {
|
} else {
|
||||||
key.actions.clone()
|
key.actions.clone()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue