(subthread_id)
| 167 | |
| 168 | |
| 169 | def doesSubthreadExist(subthread_id): |
| 170 | if not Subthread.query.filter_by(id=subthread_id).first(): |
| 171 | raise ValidationError("Subthread does not exist") |
| 172 | |
| 173 | |
| 174 | class PostValidator(ma.SQLAlchemySchema): |
nothing calls this directly
no outgoing calls
no test coverage detected