Ejemplo n.º 1
0
def delete_solution_reply(domain_id: str, psid: document.convert_doc_id,
                          psrid: objectid.ObjectId):
    return document.delete_sub(domain_id, document.TYPE_PROBLEM_SOLUTION, psid,
                               'reply', psrid)
Ejemplo n.º 2
0
Archivo: problem.py Proyecto: vijos/vj4
def delete_solution_reply(domain_id: str, psid: document.convert_doc_id, psrid: objectid.ObjectId):
  return document.delete_sub(domain_id, document.TYPE_PROBLEM_SOLUTION, psid, 'reply', psrid)
Ejemplo n.º 3
0
def delete_tail_reply(domain_id: str, drid: document.convert_doc_id,
                      drrid: objectid.ObjectId):
    return document.delete_sub(domain_id, document.TYPE_DISCUSSION_REPLY, drid,
                               'reply', drrid)
Ejemplo n.º 4
0
def delete_tail_reply(domain_id: str, drid: document.convert_doc_id, drrid: objectid.ObjectId):
  return document.delete_sub(domain_id, document.TYPE_DISCUSSION_REPLY, drid, 'reply', drrid)