Ran formatter on the code.

This commit is contained in:
janithPet 2022-06-15 22:23:38 +01:00
parent 9a8fb6c55a
commit 6f910f89eb
2 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@ pub enum Action {
All = actions::ALL, All = actions::ALL,
#[serde(rename = "search")] #[serde(rename = "search")]
Search = actions::SEARCH, Search = actions::SEARCH,
#[serde(rename = "documents.*")] #[serde(rename = "documents.*")]
DocumentsAll = actions::DOCUMENTS_ALL, DocumentsAll = actions::DOCUMENTS_ALL,
#[serde(rename = "documents.add")] #[serde(rename = "documents.add")]
DocumentsAdd = actions::DOCUMENTS_ADD, DocumentsAdd = actions::DOCUMENTS_ADD,

View File

@ -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()