Gradebook Backend API Documentation - v0.0.1
    Preparing search index...
    Index

    Constructors

    Methods

    • Parameters

      • course: Course
      • studentEmail: string
      • teacherEmail: string

      Returns Promise<{ message: string }>

    • Parameters

      • studentEmail: string

      Returns Promise<
          {
              description: string;
              grades: { date: Date; grade: number; id: number }[];
              id: number;
              students: StudentCourse[];
              teacher: {
                  email: string;
                  firstName: string;
                  image: string;
                  lastName: string;
                  role: UserRole;
              };
              title: string;
          }[],
      >