60 lines
1.7 KiB
Rust
60 lines
1.7 KiB
Rust
//! `GET /_matrix/client/*/pushrules/{scope}/{kind}/{ruleId}/actions`
|
|
|
|
pub mod v3 {
|
|
//! `/v3/` ([spec])
|
|
//!
|
|
//! [spec]: https://spec.matrix.org/v1.2/client-server-api/#get_matrixclientv3pushrulesscopekindruleidactions
|
|
|
|
use ruma_common::{api::ruma_api, push::Action};
|
|
|
|
use crate::push::RuleKind;
|
|
|
|
ruma_api! {
|
|
metadata: {
|
|
description: "This endpoint get the actions for the specified push rule.",
|
|
method: GET,
|
|
name: "get_pushrule_actions",
|
|
r0_path: "/_matrix/client/r0/pushrules/:scope/:kind/:rule_id/actions",
|
|
stable_path: "/_matrix/client/v3/pushrules/:scope/:kind/:rule_id/actions",
|
|
rate_limited: false,
|
|
authentication: AccessToken,
|
|
added: 1.0,
|
|
}
|
|
|
|
request: {
|
|
/// The scope to fetch a rule from. 'global' to specify global rules.
|
|
#[ruma_api(path)]
|
|
pub scope: &'a str,
|
|
|
|
/// The kind of rule
|
|
#[ruma_api(path)]
|
|
pub kind: RuleKind,
|
|
|
|
/// The identifier for the rule.
|
|
#[ruma_api(path)]
|
|
pub rule_id: &'a str,
|
|
}
|
|
|
|
response: {
|
|
/// The actions to perform for this rule.
|
|
pub actions: Vec<Action>,
|
|
}
|
|
|
|
error: crate::Error
|
|
}
|
|
|
|
impl<'a> Request<'a> {
|
|
/// Creates a new `Request` with the given scope, kind and rule ID.
|
|
pub fn new(scope: &'a str, kind: RuleKind, rule_id: &'a str) -> Self {
|
|
Self { scope, kind, rule_id }
|
|
}
|
|
}
|
|
|
|
impl Response {
|
|
/// Creates a new `Response` with the given actions.
|
|
pub fn new(actions: Vec<Action>) -> Self {
|
|
Self { actions }
|
|
}
|
|
}
|
|
}
|