Browse Source

Update to APIResult

Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com>
pull/2667/head
Maximilian Fijak 3 years ago
committed by GitHub
parent
commit
63a08f12ad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/api/core/organizations.rs

2
src/api/core/organizations.rs

@ -1763,7 +1763,7 @@ impl GroupRequest {
pub fn to_group(&self, organizations_uuid: &str) -> Result<Group, String> { pub fn to_group(&self, organizations_uuid: &str) -> Result<Group, String> {
let access_all_value = match self.AccessAll { let access_all_value = match self.AccessAll {
Some(value) => value, Some(value) => value,
_ => return Err(String::from("Could not convert GroupRequest to Group, because AccessAll has no value!")), _ => err!("Could not convert GroupRequest to Group, because AccessAll has no value!"),
}; };
Ok(Group::new(organizations_uuid.to_owned(), self.Name.clone(), access_all_value, self.ExternalId.clone())) Ok(Group::new(organizations_uuid.to_owned(), self.Name.clone(), access_all_value, self.ExternalId.clone()))

Loading…
Cancel
Save