Coastal Timesheet v2 — full feature buildout
Features: - Copy Previous Week (entries duplication) - Bulk Approve/Reject (admin workflow) - Overtime tracking (employee + admin views) - DayCard component with auto-save - PDF generation, email notifications - React + Tailwind frontend, Prisma + PostgreSQL backend - Docker deployment (3 containers)
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
const nodemailer = require('nodemailer');
|
||||
|
||||
let _transporter = null;
|
||||
|
||||
/**
|
||||
* Get or create the nodemailer transporter (lazy singleton)
|
||||
*/
|
||||
function getTransporter() {
|
||||
if (_transporter) return _transporter;
|
||||
|
||||
const host = process.env.SMTP_HOST;
|
||||
const port = parseInt(process.env.SMTP_PORT || '587', 10);
|
||||
const user = process.env.SMTP_USER;
|
||||
const pass = process.env.SMTP_PASS;
|
||||
|
||||
if (!host || !user || !pass) {
|
||||
throw new Error(
|
||||
'SMTP not configured. Set SMTP_HOST, SMTP_USER, and SMTP_PASS environment variables.'
|
||||
);
|
||||
}
|
||||
|
||||
_transporter = nodemailer.createTransport({
|
||||
host,
|
||||
port,
|
||||
secure: port === 465,
|
||||
auth: { user, pass },
|
||||
tls: {
|
||||
// Allow self-signed certs in dev
|
||||
rejectUnauthorized: process.env.NODE_ENV === 'production',
|
||||
},
|
||||
});
|
||||
|
||||
return _transporter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify SMTP connection is working
|
||||
*/
|
||||
async function verifySmtp() {
|
||||
const transporter = getTransporter();
|
||||
await transporter.verify();
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a timesheet PDF via email
|
||||
*
|
||||
* @param {Object} options
|
||||
* @param {string} options.to - Recipient email
|
||||
* @param {string} options.subject - Email subject
|
||||
* @param {string} options.message - Plain-text body (optional)
|
||||
* @param {Buffer} options.pdfBuffer - PDF file buffer
|
||||
* @param {string} options.pdfFilename - Filename for attachment
|
||||
* @param {string} options.fromName - Sender display name
|
||||
* @returns {Promise<Object>} nodemailer send result
|
||||
*/
|
||||
async function sendTimesheetEmail({
|
||||
to,
|
||||
subject,
|
||||
message,
|
||||
pdfBuffer,
|
||||
pdfFilename,
|
||||
fromName,
|
||||
}) {
|
||||
const transporter = getTransporter();
|
||||
const fromAddress = process.env.SMTP_FROM || process.env.SMTP_USER;
|
||||
|
||||
const htmlBody = `
|
||||
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 600px; margin: 0 auto;">
|
||||
<div style="background: #3b82f6; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
||||
<h1 style="color: white; margin: 0; font-size: 20px; letter-spacing: 1px;">
|
||||
COASTAL CONTRACTING OF FL
|
||||
</h1>
|
||||
</div>
|
||||
<div style="padding: 24px; background: #f9fafb; border: 1px solid #e5e7eb; border-top: none; border-radius: 0 0 8px 8px;">
|
||||
<h2 style="color: #1f2937; margin-top: 0;">Timesheet Attached</h2>
|
||||
${message ? `<p style="color: #374151; line-height: 1.6;">${escapeHtml(message)}</p>` : ''}
|
||||
<p style="color: #6b7280; font-size: 14px;">
|
||||
The timesheet PDF is attached to this email.
|
||||
</p>
|
||||
<hr style="border: none; border-top: 1px solid #e5e7eb; margin: 20px 0;">
|
||||
<p style="color: #9ca3af; font-size: 12px; text-align: center;">
|
||||
Sent from Coastal Timesheet • ${new Date().toLocaleDateString()}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
const result = await transporter.sendMail({
|
||||
from: fromName ? `"${fromName}" <${fromAddress}>` : fromAddress,
|
||||
to,
|
||||
subject: subject || 'Timesheet – Coastal Contracting of FL',
|
||||
text: message || 'Your timesheet is attached.',
|
||||
html: htmlBody,
|
||||
attachments: [
|
||||
{
|
||||
filename: pdfFilename || 'timesheet.pdf',
|
||||
content: pdfBuffer,
|
||||
contentType: 'application/pdf',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Escape HTML special characters
|
||||
*/
|
||||
function escapeHtml(str) {
|
||||
return str
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, ''');
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
sendTimesheetEmail,
|
||||
verifySmtp,
|
||||
};
|
||||
@@ -0,0 +1,356 @@
|
||||
const React = require('react');
|
||||
const {
|
||||
Document,
|
||||
Page,
|
||||
Text,
|
||||
View,
|
||||
StyleSheet,
|
||||
renderToBuffer,
|
||||
} = require('@react-pdf/renderer');
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
page: {
|
||||
fontFamily: 'Helvetica',
|
||||
fontSize: 10,
|
||||
paddingTop: 25,
|
||||
paddingBottom: 40,
|
||||
paddingHorizontal: 30,
|
||||
backgroundColor: '#ffffff',
|
||||
},
|
||||
headerSection: {
|
||||
marginBottom: 20,
|
||||
paddingBottom: 10,
|
||||
borderBottomWidth: 2,
|
||||
borderBottomColor: '#e5e7eb',
|
||||
},
|
||||
header: {
|
||||
fontSize: 20,
|
||||
marginBottom: 6,
|
||||
textAlign: 'center',
|
||||
fontWeight: 'bold',
|
||||
color: '#1f2937',
|
||||
letterSpacing: 1.0,
|
||||
},
|
||||
brandLine: {
|
||||
width: 60,
|
||||
height: 3,
|
||||
backgroundColor: '#3b82f6',
|
||||
alignSelf: 'center',
|
||||
marginBottom: 5,
|
||||
},
|
||||
weekInfo: {
|
||||
fontSize: 14,
|
||||
marginBottom: 18,
|
||||
textAlign: 'center',
|
||||
fontWeight: 'bold',
|
||||
color: '#374151',
|
||||
backgroundColor: '#f8fafc',
|
||||
paddingVertical: 6,
|
||||
paddingHorizontal: 16,
|
||||
borderRadius: 4,
|
||||
},
|
||||
employeeInfo: {
|
||||
fontSize: 14,
|
||||
marginBottom: 12,
|
||||
textAlign: 'center',
|
||||
fontWeight: 'bold',
|
||||
color: '#374151',
|
||||
backgroundColor: '#f0f9ff',
|
||||
paddingVertical: 6,
|
||||
paddingHorizontal: 16,
|
||||
borderRadius: 4,
|
||||
},
|
||||
statusBadge: {
|
||||
fontSize: 10,
|
||||
textAlign: 'center',
|
||||
marginBottom: 12,
|
||||
paddingVertical: 4,
|
||||
paddingHorizontal: 12,
|
||||
borderRadius: 4,
|
||||
alignSelf: 'center',
|
||||
},
|
||||
daySection: {
|
||||
marginBottom: 8,
|
||||
borderRadius: 4,
|
||||
overflow: 'hidden',
|
||||
border: '1px solid #e5e7eb',
|
||||
},
|
||||
dayHeader: {
|
||||
backgroundColor: '#3b82f6',
|
||||
paddingVertical: 6,
|
||||
paddingHorizontal: 10,
|
||||
flexDirection: 'row',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
},
|
||||
dayName: {
|
||||
fontSize: 11,
|
||||
fontWeight: 'bold',
|
||||
color: '#ffffff',
|
||||
},
|
||||
dayDate: {
|
||||
fontSize: 9,
|
||||
color: '#dbeafe',
|
||||
},
|
||||
dayTotal: {
|
||||
fontSize: 9,
|
||||
color: '#dbeafe',
|
||||
fontWeight: 'bold',
|
||||
},
|
||||
entryRow: {
|
||||
flexDirection: 'row',
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: '#f3f4f6',
|
||||
minHeight: 28,
|
||||
},
|
||||
entryRowLast: {
|
||||
borderBottomWidth: 0,
|
||||
},
|
||||
entryRowAlternate: {
|
||||
backgroundColor: '#f9fafb',
|
||||
},
|
||||
entryCell: {
|
||||
paddingVertical: 6,
|
||||
paddingHorizontal: 8,
|
||||
fontSize: 9,
|
||||
color: '#374151',
|
||||
justifyContent: 'center',
|
||||
},
|
||||
homeownerCell: {
|
||||
width: '25%',
|
||||
borderRightWidth: 1,
|
||||
borderRightColor: '#e5e7eb',
|
||||
fontWeight: 'bold',
|
||||
color: '#1f2937',
|
||||
},
|
||||
hoursCell: {
|
||||
width: '15%',
|
||||
borderRightWidth: 1,
|
||||
borderRightColor: '#e5e7eb',
|
||||
alignItems: 'center',
|
||||
fontWeight: 'bold',
|
||||
color: '#059669',
|
||||
},
|
||||
workDescCell: {
|
||||
width: '60%',
|
||||
},
|
||||
summarySection: {
|
||||
marginTop: 18,
|
||||
paddingTop: 12,
|
||||
borderTopWidth: 2,
|
||||
borderTopColor: '#3b82f6',
|
||||
flexDirection: 'row',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
},
|
||||
summaryText: {
|
||||
fontSize: 12,
|
||||
fontWeight: 'bold',
|
||||
color: '#1f2937',
|
||||
},
|
||||
totalHours: {
|
||||
fontSize: 16,
|
||||
fontWeight: 'bold',
|
||||
color: '#059669',
|
||||
},
|
||||
footer: {
|
||||
position: 'absolute',
|
||||
fontSize: 8,
|
||||
bottom: 25,
|
||||
left: 0,
|
||||
right: 0,
|
||||
textAlign: 'center',
|
||||
color: '#9ca3af',
|
||||
},
|
||||
});
|
||||
|
||||
const DAY_NAMES = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
|
||||
|
||||
/**
|
||||
* Get the 7 days of the week (Monday → Sunday) from a Monday date string
|
||||
*/
|
||||
function getWeekDays(mondayStr) {
|
||||
const days = [];
|
||||
const start = new Date(mondayStr + 'T00:00:00Z');
|
||||
for (let i = 0; i < 7; i++) {
|
||||
const d = new Date(start);
|
||||
d.setUTCDate(d.getUTCDate() + i);
|
||||
days.push(d);
|
||||
}
|
||||
return days;
|
||||
}
|
||||
|
||||
function formatDate(date) {
|
||||
const m = date.getUTCMonth() + 1;
|
||||
const d = date.getUTCDate();
|
||||
const y = date.getUTCFullYear();
|
||||
return `${m}/${d}/${y}`;
|
||||
}
|
||||
|
||||
function formatWeekRange(weekDays) {
|
||||
if (!weekDays.length) return '';
|
||||
const first = weekDays[0];
|
||||
const last = weekDays[weekDays.length - 1];
|
||||
const opts = { month: 'short', day: 'numeric' };
|
||||
const startStr = first.toLocaleDateString('en-US', { ...opts, timeZone: 'UTC' });
|
||||
const endStr = last.toLocaleDateString('en-US', { ...opts, year: 'numeric', timeZone: 'UTC' });
|
||||
return `${startStr} – ${endStr}`;
|
||||
}
|
||||
|
||||
function getStatusColor(status) {
|
||||
switch (status) {
|
||||
case 'approved': return { bg: '#dcfce7', text: '#166534' };
|
||||
case 'submitted': return { bg: '#dbeafe', text: '#1e40af' };
|
||||
case 'rejected': return { bg: '#fef2f2', text: '#991b1b' };
|
||||
default: return { bg: '#f3f4f6', text: '#374151' };
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the React-PDF document element
|
||||
*/
|
||||
function buildTimesheetDocument({ userName, weekStart, entries, status }) {
|
||||
const weekDays = getWeekDays(weekStart);
|
||||
|
||||
// Group entries by date
|
||||
const entriesByDate = {};
|
||||
for (const entry of entries) {
|
||||
const dateKey = typeof entry.date === 'string'
|
||||
? entry.date
|
||||
: entry.date.toISOString().split('T')[0];
|
||||
if (!entriesByDate[dateKey]) entriesByDate[dateKey] = [];
|
||||
entriesByDate[dateKey].push(entry);
|
||||
}
|
||||
|
||||
// Total hours
|
||||
const totalHours = entries.reduce(
|
||||
(sum, e) => sum + (parseFloat(e.hoursWorked) || 0),
|
||||
0
|
||||
);
|
||||
|
||||
const statusColors = getStatusColor(status);
|
||||
|
||||
const el = React.createElement;
|
||||
|
||||
return el(Document, null,
|
||||
el(Page, { size: 'A4', style: styles.page },
|
||||
// Header
|
||||
el(View, { style: styles.headerSection },
|
||||
el(View, { style: styles.brandLine }),
|
||||
el(Text, { style: styles.header }, 'COASTAL CONTRACTING OF FL')
|
||||
),
|
||||
|
||||
// Week range
|
||||
el(View, { style: styles.weekInfo },
|
||||
el(Text, null, `Week of: ${formatWeekRange(weekDays)}`)
|
||||
),
|
||||
|
||||
// Employee name
|
||||
userName
|
||||
? el(View, { style: styles.employeeInfo },
|
||||
el(Text, null, `Employee: ${userName}`)
|
||||
)
|
||||
: null,
|
||||
|
||||
// Status badge
|
||||
status && status !== 'draft'
|
||||
? el(View, {
|
||||
style: {
|
||||
...styles.statusBadge,
|
||||
backgroundColor: statusColors.bg,
|
||||
color: statusColors.text,
|
||||
},
|
||||
},
|
||||
el(Text, {
|
||||
style: { color: statusColors.text },
|
||||
}, `Status: ${status.charAt(0).toUpperCase() + status.slice(1)}`)
|
||||
)
|
||||
: null,
|
||||
|
||||
// Days
|
||||
...weekDays.map((day, dayIndex) => {
|
||||
const dayKey = day.toISOString().split('T')[0];
|
||||
const dayEntries = entriesByDate[dayKey] || [];
|
||||
|
||||
if (dayEntries.length === 0) return null;
|
||||
|
||||
const dayTotal = dayEntries.reduce(
|
||||
(sum, e) => sum + (parseFloat(e.hoursWorked) || 0),
|
||||
0
|
||||
);
|
||||
|
||||
return el(View, { key: dayIndex, style: styles.daySection },
|
||||
// Day header
|
||||
el(View, { style: styles.dayHeader },
|
||||
el(View, null,
|
||||
el(Text, { style: styles.dayName }, DAY_NAMES[day.getUTCDay()]),
|
||||
el(Text, { style: styles.dayDate }, formatDate(day))
|
||||
),
|
||||
el(Text, { style: styles.dayTotal }, `${dayTotal.toFixed(1)} hours`)
|
||||
),
|
||||
|
||||
// Entries
|
||||
...dayEntries.map((entry, entryIndex) => {
|
||||
const isLast = entryIndex === dayEntries.length - 1;
|
||||
const isAlt = entryIndex % 2 === 1;
|
||||
const rowStyle = [
|
||||
styles.entryRow,
|
||||
isLast ? styles.entryRowLast : null,
|
||||
isAlt ? styles.entryRowAlternate : null,
|
||||
].filter(Boolean);
|
||||
|
||||
return el(View, { key: entryIndex, style: rowStyle },
|
||||
el(View, { style: [styles.entryCell, styles.homeownerCell] },
|
||||
el(Text, null, entry.homeownerName || entry.homeowner || '-')
|
||||
),
|
||||
el(View, { style: [styles.entryCell, styles.hoursCell] },
|
||||
el(Text, null, String(entry.hoursWorked || '0'))
|
||||
),
|
||||
el(View, { style: [styles.entryCell, styles.workDescCell] },
|
||||
el(Text, null, entry.workDescription || '-')
|
||||
)
|
||||
);
|
||||
})
|
||||
);
|
||||
}).filter(Boolean),
|
||||
|
||||
// Summary
|
||||
el(View, { style: styles.summarySection },
|
||||
el(Text, { style: styles.summaryText }, 'Weekly Total'),
|
||||
el(Text, { style: styles.totalHours }, `${totalHours.toFixed(1)} Hours`)
|
||||
),
|
||||
|
||||
// Footer
|
||||
el(Text, { style: styles.footer },
|
||||
`Generated on ${new Date().toLocaleDateString()} • Coastal Contracting of FL`
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate a timesheet PDF buffer
|
||||
* @param {Object} data - { userName, weekStart, entries, status }
|
||||
* @returns {Promise<Buffer>}
|
||||
*/
|
||||
async function generateTimesheetPDF(data) {
|
||||
const doc = buildTimesheetDocument(data);
|
||||
const buffer = await renderToBuffer(doc);
|
||||
return buffer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build a filename for the PDF
|
||||
*/
|
||||
function buildPdfFilename(userName, weekStart) {
|
||||
const safeName = (userName || 'timesheet')
|
||||
.replace(/[^a-zA-Z0-9]/g, '_')
|
||||
.replace(/_+/g, '_')
|
||||
.toLowerCase();
|
||||
return `timesheet_${safeName}_${weekStart}.pdf`;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
generateTimesheetPDF,
|
||||
buildPdfFilename,
|
||||
};
|
||||
@@ -0,0 +1,147 @@
|
||||
const { z } = require('zod');
|
||||
|
||||
// ──────────────────────────── Auth ────────────────────────────
|
||||
|
||||
const loginSchema = z.object({
|
||||
email: z.string().email('Invalid email address').max(255),
|
||||
password: z.string().min(1, 'Password is required').max(128),
|
||||
});
|
||||
|
||||
const registerSchema = z.object({
|
||||
email: z.string().email('Invalid email address').max(255),
|
||||
password: z
|
||||
.string()
|
||||
.min(8, 'Password must be at least 8 characters')
|
||||
.max(128),
|
||||
name: z.string().min(1, 'Name is required').max(100).trim(),
|
||||
role: z.enum(['employee', 'admin', 'super_admin']).default('employee'),
|
||||
});
|
||||
|
||||
const refreshSchema = z.object({
|
||||
refreshToken: z.string().min(1, 'Refresh token is required'),
|
||||
});
|
||||
|
||||
// ──────────────────────────── Entries ────────────────────────────
|
||||
|
||||
const createEntrySchema = z.object({
|
||||
date: z.string().regex(/^\d{4}-\d{2}-\d{2}$/, 'Date must be YYYY-MM-DD'),
|
||||
homeownerId: z.string().uuid('Invalid homeowner ID'),
|
||||
hoursWorked: z
|
||||
.number()
|
||||
.positive('Hours must be positive')
|
||||
.max(24, 'Hours cannot exceed 24'),
|
||||
workDescription: z.string().min(1, 'Description is required').max(1000).trim(),
|
||||
});
|
||||
|
||||
const updateEntrySchema = z.object({
|
||||
date: z.string().regex(/^\d{4}-\d{2}-\d{2}$/, 'Date must be YYYY-MM-DD').optional(),
|
||||
homeownerId: z.string().uuid('Invalid homeowner ID').optional(),
|
||||
hoursWorked: z
|
||||
.number()
|
||||
.positive('Hours must be positive')
|
||||
.max(24, 'Hours cannot exceed 24')
|
||||
.optional(),
|
||||
workDescription: z.string().min(1).max(1000).trim().optional(),
|
||||
});
|
||||
|
||||
const weekQuerySchema = z.object({
|
||||
week: z
|
||||
.string()
|
||||
.regex(/^\d{4}-\d{2}-\d{2}$/, 'Week must be YYYY-MM-DD (Monday)')
|
||||
.optional(),
|
||||
});
|
||||
|
||||
// ──────────────────────────── Timesheets ────────────────────────────
|
||||
|
||||
const submitTimesheetSchema = z.object({
|
||||
weekStart: z.string().regex(/^\d{4}-\d{2}-\d{2}$/, 'weekStart must be YYYY-MM-DD'),
|
||||
});
|
||||
|
||||
const emailTimesheetSchema = z.object({
|
||||
to: z.string().email('Invalid recipient email').max(255),
|
||||
subject: z.string().max(200).optional(),
|
||||
message: z.string().max(2000).optional(),
|
||||
});
|
||||
|
||||
// ──────────────────────────── Admin ────────────────────────────
|
||||
|
||||
const approveRejectSchema = z.object({
|
||||
notes: z.string().max(1000).trim().optional(),
|
||||
});
|
||||
|
||||
const createUserSchema = registerSchema;
|
||||
|
||||
const createHomeownerSchema = z.object({
|
||||
name: z.string().min(1, 'Name is required').max(200).trim(),
|
||||
address: z.string().max(500).trim().optional().nullable(),
|
||||
});
|
||||
|
||||
const updateHomeownerSchema = z.object({
|
||||
name: z.string().min(1).max(200).trim().optional(),
|
||||
address: z.string().max(500).trim().optional().nullable(),
|
||||
isActive: z.boolean().optional(),
|
||||
});
|
||||
|
||||
const reportQuerySchema = z.object({
|
||||
from: z.string().regex(/^\d{4}-\d{2}-\d{2}$/, 'from must be YYYY-MM-DD').optional(),
|
||||
to: z.string().regex(/^\d{4}-\d{2}-\d{2}$/, 'to must be YYYY-MM-DD').optional(),
|
||||
userId: z.string().uuid().optional(),
|
||||
homeownerId: z.string().uuid().optional(),
|
||||
status: z.enum(['draft', 'submitted', 'approved', 'rejected']).optional(),
|
||||
});
|
||||
|
||||
// ──────────────────────────── Helpers ────────────────────────────
|
||||
|
||||
/**
|
||||
* Express middleware factory for validating request body with a zod schema
|
||||
*/
|
||||
function validateBody(schema) {
|
||||
return (req, res, next) => {
|
||||
const result = schema.safeParse(req.body);
|
||||
if (!result.success) {
|
||||
const errors = result.error.errors.map((e) => ({
|
||||
field: e.path.join('.'),
|
||||
message: e.message,
|
||||
}));
|
||||
return res.status(400).json({ error: 'Validation failed', details: errors });
|
||||
}
|
||||
req.validated = result.data;
|
||||
next();
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Express middleware factory for validating query parameters
|
||||
*/
|
||||
function validateQuery(schema) {
|
||||
return (req, res, next) => {
|
||||
const result = schema.safeParse(req.query);
|
||||
if (!result.success) {
|
||||
const errors = result.error.errors.map((e) => ({
|
||||
field: e.path.join('.'),
|
||||
message: e.message,
|
||||
}));
|
||||
return res.status(400).json({ error: 'Invalid query parameters', details: errors });
|
||||
}
|
||||
req.validatedQuery = result.data;
|
||||
next();
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
loginSchema,
|
||||
registerSchema,
|
||||
refreshSchema,
|
||||
createEntrySchema,
|
||||
updateEntrySchema,
|
||||
weekQuerySchema,
|
||||
submitTimesheetSchema,
|
||||
emailTimesheetSchema,
|
||||
approveRejectSchema,
|
||||
createUserSchema,
|
||||
createHomeownerSchema,
|
||||
updateHomeownerSchema,
|
||||
reportQuerySchema,
|
||||
validateBody,
|
||||
validateQuery,
|
||||
};
|
||||
Reference in New Issue
Block a user