diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-10 13:13:16 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-10 13:13:16 -0600 |
| commit | ecf43aac41e27f6546858cd98a152ac761a9afb6 (patch) | |
| tree | 59067b99e180c6cf64790a40a60796714a24c98e /src/authorization | |
| parent | 01959b16a21b22b5df5f16569c2a8e8f92beecef (diff) | |
refactor: rename generate to all
Diffstat (limited to 'src/authorization')
| -rw-r--r-- | src/authorization/entities.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authorization/entities.rs b/src/authorization/entities.rs index 8c3f7955..4824fdd8 100644 --- a/src/authorization/entities.rs +++ b/src/authorization/entities.rs @@ -75,7 +75,7 @@ impl EntitiesRepository { } } - pub async fn generate(&self) -> Result<Vec<CedarEntity>, Box<dyn std::error::Error>> { + pub async fn all(&self) -> Result<Vec<CedarEntity>, Box<dyn std::error::Error>> { let client = reqwest::Client::new(); let mut entities = Vec::new(); let mut processed_groups = HashSet::new(); |
