Skip to content

Commit

Permalink
Merge pull request #72 from NSWC-Crane/CHRIS_DEV
Browse files Browse the repository at this point in the history
Reference pull request for full details.
  • Loading branch information
New Author Name authored and crodriguez6497 committed Jun 4, 2024
2 parents 73fd57b + 5c46c46 commit c78b647
Show file tree
Hide file tree
Showing 55 changed files with 571 additions and 401 deletions.
291 changes: 0 additions & 291 deletions Database/POAM_Tracking_Tool_Data_Model.sql

This file was deleted.

2 changes: 1 addition & 1 deletion api/Controllers/Asset.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const assetService = require('../Services/mysql/assetService')
const assetService = require('../Services/assetService')

module.exports.getAssets = async function getAssets(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/AssetLabel.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const assetLabelService = require('../Services/mysql/assetLabelService')
const assetLabelService = require('../Services/assetLabelService')

module.exports.getAssetLabels = async function getAssetLabels(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const collectionService = require('../Services/mysql/collectionService');
const collectionService = require('../Services/collectionService');


module.exports.getCollectionBasicList = async function getCollectionBasicList(req, res, next) {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Import.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const importService = require('../Services/mysql/importService');
const importService = require('../Services/importService');

module.exports.updatePoamAssetsWithStigManagerData = async function updatePoamAssetsWithStigManagerData(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Label.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const labelService = require('../Services/mysql/labelService');
const labelService = require('../Services/labelService');

module.exports.getLabels = async function getLabels(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Metrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const metricsService = require('../Services/mysql/metricsService');
const metricsService = require('../Services/metricsService');

module.exports.getCollectionAssetLabel = async function getCollectionAssetLabel(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const notificationService = require('../Services/mysql/notificationService');
const notificationService = require('../Services/notificationService');

module.exports.getAllNotificationsByUserId = async function getAllNotificationsByUserId(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Operation.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const operationService = require('../Services/mysql/operationService');
const operationService = require('../Services/operationService');
const config = require('../utils/config');

module.exports.getConfiguration = async function getConfiguration(req, res, next) {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/POAM.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const poamService = require('../Services/mysql/poamService');
const poamService = require('../Services/poamService');

module.exports.getAvailablePoams = async function getAvailablePoams(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/Permissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const permissionService = require('../Services/mysql/permissionsService');
const permissionService = require('../Services/permissionsService');

module.exports.getCollectionPermission = async function getCollectionPermission(req, res, next) {
try {
Expand Down
2 changes: 1 addition & 1 deletion api/Controllers/PoamApprover.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!########################################################################
*/

const poamApproverService = require('../Services/mysql/poamApproverService')
const poamApproverService = require('../Services/poamApproverService')

module.exports.getPoamApprovers = async function getPoamApprovers(req, res, next) {
try {
Expand Down
Loading

0 comments on commit c78b647

Please sign in to comment.