new channel create/delete routes added

This commit is contained in:
shockrah 2020-07-29 00:28:09 -07:00
parent 677d0a3b36
commit 8d520117d4

View File

@ -2,12 +2,13 @@ pub const INVITE_JOIN: &'static str = "/invite/join"; // requires @code
pub const INVITE_CREATE: &'static str = "/invite/create"; // requires none
pub const CHANNELS_LIST: &'static str = "/channels/list"; // requires none
pub const CHANNELS_CREATE: &'static str = "/channels/create"; // requires @name @description
pub const CHANNELS_CREATE: &'static str = "/channels/create"; // requires @name @kind
pub const CHANNELS_DELETE: &'static str = "/channels/delete"; // requires @name
pub const MESSAGE_SEND: &'static str = "/messsage/send"; // requires @content
const DYNAMIC_ROUTE_BASES: [&'static str;1] = [
"/invites"
"/invites",
];
pub struct DynRoute {
@ -35,4 +36,4 @@ pub fn resolve_dynamic_route(uri: &str) -> Option<DynRoute> {
else {
None
}
}
}