Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
14 lines
361 B
Python
14 lines
361 B
Python
from app.models import Comments
|
|
|
|
|
|
def get_case_comment(comment_id, caseid):
|
|
if caseid is None:
|
|
return Comments.query.filter(
|
|
Comments.comment_id == comment_id
|
|
).first()
|
|
else:
|
|
return Comments.query.filter(
|
|
Comments.comment_id == comment_id,
|
|
Comments.comment_case_id == caseid
|
|
).first()
|