|
@ -23,9 +23,9 @@ class ParticipantRepo {
|
|
|
* @param handler
|
|
|
*/
|
|
|
static findAll(sessionId, handler) {
|
|
|
let sql = "SELECT u.id, u.name, u.sex, u.birthdate, u.avatar, p.participant_role role, false is_patient,p.last_fetch_time FROM sessions s, participants p, doctors u " +
|
|
|
let sql = "SELECT u.id, u.name, u.sex, u.birthdate, u.avatar, p.participant_role role, false is_patient,p.last_fetch_time,u.level FROM sessions s, participants p, doctors u " +
|
|
|
"WHERE s.id = ? AND s.id = p.session_id AND p.participant_id = u.id union " +
|
|
|
"SELECT u.id, u.name, u.sex, u.birthdate, u.avatar, p.participant_role role, true is_patient,p.last_fetch_time FROM sessions s, participants p, patients u " +
|
|
|
"SELECT u.id, u.name, u.sex, u.birthdate, u.avatar, p.participant_role role, true is_patient,p.last_fetch_time,0 as level FROM sessions s, participants p, patients u " +
|
|
|
"WHERE s.id = ? AND s.id = p.session_id AND p.participant_id = u.id";
|
|
|
|
|
|
ImDb.execQuery({
|