Skip to content

Commit

Permalink
Limiting corresponding websites to website service category modal vie…
Browse files Browse the repository at this point in the history
…w table to only production_status = production, satisfying issue #505
  • Loading branch information
hatfieldjm4 committed Oct 22, 2024
1 parent 6f22af1 commit 6a7adac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api/controllers/website-service-category.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ exports.findRelatedWebsites = (req, res) => {
)
.toString() +
` WHERE zk.obj_service_category_id = ${req.params.id}
AND w.production_status = "production"
ORDER BY w.domain ASC;`;

res = ctrl.sendQuery(
Expand Down

0 comments on commit 6a7adac

Please sign in to comment.