2015-11-24 17:55:10 +01:00
|
|
|
|
2015-11-24 16:57:02 +01:00
|
|
|
Meteor.methods({
|
|
|
|
|
"removeMeasurementsByPatientId": function(patientId) {
|
|
|
|
|
Measurements.remove(
|
2015-11-24 17:55:10 +01:00
|
|
|
{patientId: patientId}
|
2015-11-24 16:57:02 +01:00
|
|
|
);
|
|
|
|
|
}
|
2015-11-24 17:55:10 +01:00
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|