joven-health-mike / juno-react

A virtual therapy platform designed for K-12 schools.
0 stars 0 forks source link

Add ability to change the appointment status #129

Closed joven-health-mike closed 1 year ago

joven-health-mike commented 1 year ago

There is currently no way on the front-end to change the appointment status. Therefore, the appointment will currently always be "SCHEDULED".

joven-health-mike commented 1 year ago
export const AppointmentStatus: {
  SCHEDULED: 'SCHEDULED',
  CANCELLED: 'CANCELLED',
  ONGOING: 'ONGOING',
  FINISHED: 'FINISHED',
  DELETED: 'DELETED'
};

Should we distinguish a cancellation from a no-show?

joven-health-mike commented 1 year ago

Fixed in #139