(domainId: string, psid: ObjectId, psrid: ObjectId, content: string)
| 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 }); |
| 66 | } |
| 67 | |
| 68 | static delReply(domainId: string, psid: ObjectId, psrid: ObjectId) { |
| 69 | return document.deleteSub(domainId, document.TYPE_PROBLEM_SOLUTION, psid, 'reply', psrid); |
no outgoing calls
no test coverage detected