Include project level in validations query

parent 59996871
......@@ -40,8 +40,10 @@ export default {
},
result({
data: {
project: {
validations: { nodes = [] },
},
},
}) {
const store = this.$apollo.getClient();
nodes.forEach(({ normalizedTargetUrl, status }) => {
......
export const dastSiteValidations = (nodes = []) => ({
data: {
project: {
validations: {
nodes,
},
},
},
});
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