Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference pull request for full details. #72

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading