Renamed Student to Attendee

This commit is contained in:
Jose Selesan
2026-09-17 18:58:00 -03:00
parent e8bca3a5ae
commit fa30fe2cff
22 changed files with 120 additions and 104 deletions

View File

@@ -20,8 +20,8 @@ app.route('/payments', paymentsRoutes);
const payment = {
id: 'payment-1',
groupId: 'group-1',
studentId: 'student-1',
groupId: 'group-1',
attendeeId: 'attendee-1',
amount: { toString: () => '150.50' } as { toString(): string },
currency: 'MXN',
status: 'pending',
@@ -47,8 +47,8 @@ describe('payments routes', () => {
data: [
{
id: 'payment-1',
groupId: 'group-1',
studentId: 'student-1',
groupId: 'group-1',
attendeeId: 'attendee-1',
amount: 150.5,
currency: 'MXN',
status: 'pending',