NIAEFEUP / tts-be

A platform where students can experiment with the possible combination of schedule options they can pick at the start of the semester
https://tts.niaefeup.pt
5 stars 1 forks source link

Changed the name of the professor model values #76

Closed diogotvf7 closed 4 months ago

diogotvf7 commented 5 months ago

Switched the names from:

        professors.append({
            'professor_id': professor.id,
            'professor_acronym': professor.professor_acronym,
            'professor_name': professor.professor_name
        })

to:

        professors.append({
            'id': professor.id,
            'acronym': professor.professor_acronym,
            'name': professor.professor_name
        })