(self, name, email, password)
| 34 | posts = relationship("BlogPost", backref="author") |
| 35 | |
| 36 | def __init__(self, name, email, password): |
| 37 | self.name = name |
| 38 | self.email = email |
| 39 | self.password = bcrypt.generate_password_hash(password) |
| 40 | |
| 41 | def is_authenticated(self): |
| 42 | return True |
nothing calls this directly
no outgoing calls
no test coverage detected