mirror of https://github.com/logos-co/open-law.git
Merge branch 'develop' into svyat/feat/book_stats
This commit is contained in:
commit
26cdbb0f2f
|
@ -61,7 +61,7 @@ def edit_profile():
|
||||||
@bp.route("/<int:user_id>/profile")
|
@bp.route("/<int:user_id>/profile")
|
||||||
@login_required
|
@login_required
|
||||||
def profile(user_id: int):
|
def profile(user_id: int):
|
||||||
user: m.User = m.User.query.get(user_id)
|
user: m.User = db.session.get(m.User, user_id)
|
||||||
interpretations: m.Interpretation = m.Interpretation.query.filter_by(
|
interpretations: m.Interpretation = m.Interpretation.query.filter_by(
|
||||||
user_id=user_id
|
user_id=user_id
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue