Rename {create => send}_message_event, same for state

This commit is contained in:
Jonas Platte 2020-08-08 14:27:00 +02:00
parent 929cd8a8d0
commit 582cc9fe2a
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
6 changed files with 5 additions and 3 deletions

View File

@ -38,6 +38,8 @@ Breaking changes:
* Update type of `limit` in `r0::user_directory::search_users` from
`Option<UInt>` to `UInt`
* Update strum dependency to 0.19
* Rename `r0::message::{create_message_event => send_message_event}`
* Rename `r0::state::{create_state_event_* => send_state_event_*}`
Improvements:

View File

@ -1,4 +1,4 @@
//! Enpoints for sending and receiving messages
pub mod create_message_event;
pub mod get_message_events;
pub mod send_message_event;

View File

@ -1,7 +1,7 @@
//! Endpoints for managing room state
pub mod create_state_event_for_empty_key;
pub mod create_state_event_for_key;
pub mod get_state_events;
pub mod get_state_events_for_empty_key;
pub mod get_state_events_for_key;
pub mod send_state_event_for_empty_key;
pub mod send_state_event_for_key;