Revert incorrect API change

This commit is contained in:
Maxime Augier 2024-08-21 22:07:50 +02:00
parent bc1a15f27c
commit 7881799e84

View File

@ -461,10 +461,6 @@ impl Context {
/// List all sites available to the user /// List all sites available to the user
pub fn sites(&mut self) -> Result<Vec<Site>, ApiError> { pub fn sites(&mut self) -> Result<Vec<Site>, ApiError> {
self.get("sites?detailed=false")
}
pub fn sites_details(&mut self) -> Result<Vec<SiteDetails>, ApiError> {
self.get("sites") self.get("sites")
} }