summaryrefslogtreecommitdiff
path: root/src/channel/routes/post.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/channel/routes/post.rs')
-rw-r--r--src/channel/routes/post.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/channel/routes/post.rs b/src/channel/routes/post.rs
index 810445c..2cf1cc0 100644
--- a/src/channel/routes/post.rs
+++ b/src/channel/routes/post.rs
@@ -54,6 +54,9 @@ impl IntoResponse for Error {
app::CreateError::DuplicateName(_) => {
(StatusCode::CONFLICT, error.to_string()).into_response()
}
+ app::CreateError::InvalidName(_) => {
+ (StatusCode::BAD_REQUEST, error.to_string()).into_response()
+ }
other => Internal::from(other).into_response(),
}
}