mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-22 05:35:10 +00:00
Change API errors to be JSON
This commit is contained in:
@@ -78,5 +78,24 @@ pub struct SubscribeResponse {
|
||||
pub messages: Vec<SubscribeMessage>,
|
||||
}
|
||||
|
||||
/// General response type returned from all Rojo routes
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub struct NotFoundError;
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub struct ErrorResponse {
|
||||
kind: ErrorResponseKind,
|
||||
details: String,
|
||||
}
|
||||
|
||||
impl ErrorResponse {
|
||||
pub fn not_found<S: Into<String>>(details: S) -> Self {
|
||||
Self {
|
||||
kind: ErrorResponseKind::NotFound,
|
||||
details: details.into(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub enum ErrorResponseKind {
|
||||
NotFound,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user