Commit a5847351 authored by Sashi's avatar Sashi

Stringify policy yaml response in scanExecutionPolicies graphql query

This MR updates the policy yaml response in
scanExecutionPolicies GraphQL query to stringify the keys of
the yaml. It used to be symbolised keys which will be difficult
to parse in the frontend.

EE: true
Changelog: changed
parent 73eb2f38
...@@ -19,7 +19,7 @@ module Resolvers ...@@ -19,7 +19,7 @@ module Resolvers
name: policy[:name], name: policy[:name],
description: policy[:description], description: policy[:description],
enabled: policy[:enabled], enabled: policy[:enabled],
yaml: policy.to_yaml, yaml: YAML.dump(policy.deep_stringify_keys),
updated_at: policy_configuration.policy_last_updated_at updated_at: policy_configuration.policy_last_updated_at
} }
end end
......
...@@ -57,7 +57,7 @@ RSpec.describe Resolvers::ScanExecutionPolicyResolver do ...@@ -57,7 +57,7 @@ RSpec.describe Resolvers::ScanExecutionPolicyResolver do
name: 'Run DAST in every pipeline', name: 'Run DAST in every pipeline',
description: 'This policy enforces to run DAST for every pipeline within the project', description: 'This policy enforces to run DAST for every pipeline within the project',
enabled: true, enabled: true,
yaml: policy.to_yaml, yaml: YAML.dump(policy.deep_stringify_keys),
updated_at: policy_last_updated_at updated_at: policy_last_updated_at
} }
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment