(domainId: string, psid: ObjectId, psrid: ObjectId)
| 58 | } |
| 59 | |
| 60 | static getReply(domainId: string, psid: ObjectId, psrid: ObjectId) { |
| 61 | return document.getSub(domainId, document.TYPE_PROBLEM_SOLUTION, psid, 'reply', psrid); |
| 62 | } |
| 63 | |
| 64 | static editReply(domainId: string, psid: ObjectId, psrid: ObjectId, content: string) { |
| 65 | return document.setSub(domainId, document.TYPE_PROBLEM_SOLUTION, psid, 'reply', psrid, { content }); |
no outgoing calls
no test coverage detected