From 0dff055b0594a5bc8282d15df81a8677fc09d83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Fri, 26 Nov 2021 16:10:25 +0000 Subject: [PATCH] refactor: improve TODOs readability --- lib/customers.js | 2 +- lib/new-admin/graphql/resolvers/customer.resolver.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/customers.js b/lib/customers.js index 5ce821f7..7586267d 100644 --- a/lib/customers.js +++ b/lib/customers.js @@ -231,7 +231,7 @@ function enhanceEditedPhotos (fields) { */ function deleteEditedData (id, data) { - // NOT IMPLEMENTING THIS FEATURE FOR THE CURRENT VERSION + // TODO: NOT IMPLEMENTING THIS FEATURE FOR THE CURRENT VERSION const defaults = [ 'front_camera', 'id_card_data', diff --git a/lib/new-admin/graphql/resolvers/customer.resolver.js b/lib/new-admin/graphql/resolvers/customer.resolver.js index 059cbe4f..36a24b0f 100644 --- a/lib/new-admin/graphql/resolvers/customer.resolver.js +++ b/lib/new-admin/graphql/resolvers/customer.resolver.js @@ -14,7 +14,7 @@ const resolvers = { }, Mutation: { setCustomer: (root, { customerId, customerInput }, context, info) => { - // To be replaced by function that fetchs the token + // TODO: To be replaced by function that fetchs the token const token = !!context.req.cookies.lamassu_sid && context.req.session.user.id if (customerId === anonymous.uuid) return customers.getCustomerById(customerId) return customers.updateCustomer(customerId, customerInput, token) @@ -23,13 +23,13 @@ const resolvers = { saveCustomField: (...[, { customerId, fieldId, newValue }]) => customers.saveCustomField(customerId, fieldId, newValue), removeCustomField: (...[, [ { customerId, fieldId } ]]) => customers.removeCustomField(customerId, fieldId), editCustomer: async (root, { customerId, customerEdit }, context) => { - // To be replaced by function that fetchs the token + // TODO: To be replaced by function that fetchs the token const token = !!context.req.cookies.lid && context.req.session.user.id const editedData = await customerEdit return customers.edit(customerId, editedData, token) }, replacePhoto: async (root, { customerId, photoType, newPhoto }, context) => { - // To be replaced by function that fetchs the token + // TODO: To be replaced by function that fetchs the token const token = !!context.req.cookies.lid && context.req.session.user.id const photo = await newPhoto if (!photo) return customers.getCustomerById(customerId) @@ -37,7 +37,7 @@ const resolvers = { .then(newPatch => customers.edit(customerId, newPatch, token)) }, deleteEditedData: (root, { customerId, customerEdit }) => { - // NOT IMPLEMENTING THIS FEATURE FOR THE CURRENT VERSION + // TODO: NOT IMPLEMENTING THIS FEATURE FOR THE CURRENT VERSION return customers.getCustomerById(customerId) } }