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
//! [GET /_matrix/client/r0/pushrules/global/](https://matrix.org/docs/spec/client_server/r0.6.1#get-matrix-client-r0-pushrules) use ruma_api::ruma_api; use ruma_common::push::Ruleset; ruma_api! { metadata: { description: "Retrieve all push rulesets in the global scope for this user.", method: GET, name: "get_pushrules_global_scope", path: "/_matrix/client/r0/pushrules/global/", rate_limited: false, requires_authentication: true, } request: {} response: { /// The global ruleset. #[ruma_api(body)] pub global: Ruleset, } error: crate::Error }