Browse Source
Merge pull request #3513 from stefan0xC/fix-empty-policy
policy data should be `null` not an empty object
pull/3522/head
Mathijs van Veluw
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 { |
|
|
let policy = match OrgPolicy::find_by_org_and_type(org_id, pol_type_enum, &mut conn).await { |
|
|
Some(p) => p, |
|
|
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())) |
|
|
Ok(Json(policy.to_json())) |
|
|