Browse Source
policy data should be `null` not an empty object
pull/3513/head
Stefan Melmuk
2 years ago
No known key found for this signature in database
GPG Key ID: 817020C608FE9C09
1 changed files with
1 additions and
1 deletions
-
src/api/core/organizations.rs
|
|
@ -1652,7 +1652,7 @@ async fn get_policy(org_id: &str, pol_type: i32, _headers: AdminHeaders, mut con |
|
|
|
|
|
|
|
let policy = match OrgPolicy::find_by_org_and_type(org_id, pol_type_enum, &mut conn).await { |
|
|
|
Some(p) => p, |
|
|
|
None => OrgPolicy::new(String::from(org_id), pol_type_enum, "{}".to_string()), |
|
|
|
None => OrgPolicy::new(String::from(org_id), pol_type_enum, "null".to_string()), |
|
|
|
}; |
|
|
|
|
|
|
|
Ok(Json(policy.to_json())) |
|
|
|