1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
use anyhow::Result;
use crate::Client;
pub struct AdminApps {
pub client: Client,
}
impl AdminApps {
#[doc(hidden)]
pub fn new(client: Client) -> Self {
AdminApps { client }
}
/**
* This function performs a `POST` to the `/admin.apps.approve` endpoint.
*
* Approve an app for installation on a workspace.
*
* FROM: <https://api.slack.com/methods/admin.apps.approve>
*
* **Parameters:**
*
* * `token: &str` -- Authentication token. Requires scope: `admin.apps:write`.
*/
pub async fn approve(&self) -> Result<crate::types::DndEndSchema> {
let url = self.client.url("/admin.apps.approve", None);
self.client
.post(
&url,
crate::Message {
body: None,
content_type: Some("application/x-www-form-urlencoded".to_string()),
},
)
.await
}
/**
* This function performs a `POST` to the `/admin.apps.restrict` endpoint.
*
* Restrict an app for installation on a workspace.
*
* FROM: <https://api.slack.com/methods/admin.apps.restrict>
*
* **Parameters:**
*
* * `token: &str` -- Authentication token. Requires scope: `admin.apps:write`.
*/
pub async fn restrict(&self) -> Result<crate::types::DndEndSchema> {
let url = self.client.url("/admin.apps.restrict", None);
self.client
.post(
&url,
crate::Message {
body: None,
content_type: Some("application/x-www-form-urlencoded".to_string()),
},
)
.await
}
}