summaryrefslogtreecommitdiff
path: root/src/channel/mod.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-10-29 20:44:03 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-10-29 20:44:03 -0400
commit9010c7feeca8f4e7e501ad474911deaaf7a1a367 (patch)
treee2fb736e7923c0d084ee3ebffe03752dc237edfb /src/channel/mod.rs
parent15311c7bd816a83d0641de6b6bb3c41bb67079db (diff)
Restrict channel names, too.
Thankfully, channel creation only happens in one place, so we don't need a state machine for this.
Diffstat (limited to 'src/channel/mod.rs')
-rw-r--r--src/channel/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/channel/mod.rs b/src/channel/mod.rs
index eb8200b..d5ba828 100644
--- a/src/channel/mod.rs
+++ b/src/channel/mod.rs
@@ -5,5 +5,6 @@ mod id;
pub mod repo;
mod routes;
mod snapshot;
+mod validate;
pub use self::{event::Event, history::History, id::Id, routes::router, snapshot::Channel};