diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-16 22:15:14 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-16 22:15:14 -0700 |
commit | f3b2432664b28bd979d1600c2200e3fe41c8e380 (patch) | |
tree | ab7912f972deddfb35a1686b8a1dbddd03d78d7e /rust/fatcat-api/src/lib.rs | |
parent | 2c9edb5c394d9fc75cf3be49a157763506e1265c (diff) | |
download | fatcat-f3b2432664b28bd979d1600c2200e3fe41c8e380.tar.gz fatcat-f3b2432664b28bd979d1600c2200e3fe41c8e380.zip |
api tweaks
Diffstat (limited to 'rust/fatcat-api/src/lib.rs')
-rw-r--r-- | rust/fatcat-api/src/lib.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/rust/fatcat-api/src/lib.rs b/rust/fatcat-api/src/lib.rs index 3696a1e2..716781cb 100644 --- a/rust/fatcat-api/src/lib.rs +++ b/rust/fatcat-api/src/lib.rs @@ -118,8 +118,10 @@ pub enum EditgroupIdAcceptPostResponse { #[derive(Debug, PartialEq)] pub enum EditgroupIdGetResponse { - /// Found Editgroup - FoundEditgroup(models::Editgroup), + /// Found Entity + FoundEntity(models::Editgroup), + /// Bad Request + BadRequest(models::ErrorResponse), /// Not Found NotFound(models::ErrorResponse), /// Generic Error @@ -139,7 +141,7 @@ pub enum EditgroupPostResponse { #[derive(Debug, PartialEq)] pub enum EditorUsernameChangelogGetResponse { /// Found Merged Changes - FoundMergedChanges(models::Changelogentry), + FoundMergedChanges(models::Changelogentries), /// Not Found NotFound(models::ErrorResponse), /// Generic Error |