summaryrefslogtreecommitdiff
path: root/src/errors.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-11-29 12:36:59 +0100
committerSanto Cariotti <santo@dcariotti.me>2024-11-29 12:36:59 +0100
commit26d8aed5540677d539957dea16f95491499eff58 (patch)
treefc5f2ef0a5dd063e7a4a4fb4f63cfaed45d7e1ec /src/errors.rs
parent235a650d34348e8a7febea525b452b2b062cd1d5 (diff)
Use Expo on the AppState
This because since Rust 1.83 it is suggested to not use the static reference cloning
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 3dda65c..5f2a8dd 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -96,3 +96,10 @@ impl From<async_graphql::Error> for AppError {
AppError::BadRequest(value.message)
}
}
+
+/// A expo_push_notification_client::ValidationError is mapped to an `AppError::BadRequest`
+impl From<expo_push_notification_client::ValidationError> for AppError {
+ fn from(value: expo_push_notification_client::ValidationError) -> Self {
+ AppError::BadRequest(value.to_string())
+ }
+}