appservice-api: Fix endpoint versioning
This commit is contained in:
parent
0a538b53df
commit
656dc723ad
@ -1,5 +1,9 @@
|
||||
# [unreleased]
|
||||
|
||||
Breaking changes:
|
||||
|
||||
* Fix endpoint versioning
|
||||
|
||||
# 0.2.0
|
||||
|
||||
Improvements:
|
||||
|
3
ruma-appservice-api/src/event/push_events/mod.rs
Normal file
3
ruma-appservice-api/src/event/push_events/mod.rs
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to push an event (or batch of events) to the application service.
|
||||
|
||||
pub mod v1;
|
@ -4,4 +4,6 @@
|
||||
#![warn(missing_copy_implementations, missing_debug_implementations, missing_docs)]
|
||||
#![allow(clippy::new_without_default)]
|
||||
|
||||
pub mod v1;
|
||||
pub mod event;
|
||||
pub mod query;
|
||||
pub mod thirdparty;
|
||||
|
3
ruma-appservice-api/src/query/query_room_alias/mod.rs
Normal file
3
ruma-appservice-api/src/query/query_room_alias/mod.rs
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to query the existence of a given room alias.
|
||||
|
||||
pub mod v1;
|
3
ruma-appservice-api/src/query/query_user_id/mod.rs
Normal file
3
ruma-appservice-api/src/query/query_user_id/mod.rs
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to query the existence of a given user ID.
|
||||
|
||||
pub mod v1;
|
3
ruma-appservice-api/src/thirdparty/get_location_for_protocol/mod.rs
vendored
Normal file
3
ruma-appservice-api/src/thirdparty/get_location_for_protocol/mod.rs
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to retrieve a list of Matrix portal rooms that lead to the matched third party location.
|
||||
|
||||
pub mod v1;
|
3
ruma-appservice-api/src/thirdparty/get_location_for_room_alias/mod.rs
vendored
Normal file
3
ruma-appservice-api/src/thirdparty/get_location_for_room_alias/mod.rs
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to retrieve an array of third party network locations from a Matrix room alias.
|
||||
|
||||
pub mod v1;
|
3
ruma-appservice-api/src/thirdparty/get_protocol/mod.rs
vendored
Normal file
3
ruma-appservice-api/src/thirdparty/get_protocol/mod.rs
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to present clients with specific information about the various third party networks that an application service supports.
|
||||
|
||||
pub mod v1;
|
3
ruma-appservice-api/src/thirdparty/get_user_for_protocol/mod.rs
vendored
Normal file
3
ruma-appservice-api/src/thirdparty/get_user_for_protocol/mod.rs
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to retrieve a Matrix User ID linked to a user on the third party network, given a set of user parameters.
|
||||
|
||||
pub mod v1;
|
3
ruma-appservice-api/src/thirdparty/get_user_for_user_id/mod.rs
vendored
Normal file
3
ruma-appservice-api/src/thirdparty/get_user_for_user_id/mod.rs
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
//! Endpoint to retrieve an array of third party users from a Matrix User ID.
|
||||
|
||||
pub mod v1;
|
@ -1,5 +0,0 @@
|
||||
//! Endpoints for the r0.x.x versions of the application service API specification
|
||||
|
||||
pub mod event;
|
||||
pub mod query;
|
||||
pub mod thirdparty;
|
Loading…
x
Reference in New Issue
Block a user