appservice-api: Fix endpoint versioning

This commit is contained in:
q-b 2020-08-12 21:33:07 +02:00 committed by GitHub
parent 0a538b53df
commit 656dc723ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 31 additions and 6 deletions

View File

@ -1,5 +1,9 @@
# [unreleased]
Breaking changes:
* Fix endpoint versioning
# 0.2.0
Improvements:

View File

@ -0,0 +1,3 @@
//! Endpoint to push an event (or batch of events) to the application service.
pub mod v1;

View File

@ -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;

View File

@ -0,0 +1,3 @@
//! Endpoint to query the existence of a given room alias.
pub mod v1;

View File

@ -0,0 +1,3 @@
//! Endpoint to query the existence of a given user ID.
pub mod v1;

View 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;

View File

@ -0,0 +1,3 @@
//! Endpoint to retrieve an array of third party network locations from a Matrix room alias.
pub mod v1;

View 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;

View 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;

View File

@ -0,0 +1,3 @@
//! Endpoint to retrieve an array of third party users from a Matrix User ID.
pub mod v1;

View File

@ -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;