mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
update api with new models
This commit is contained in:
parent
70ccd57519
commit
1624439bba
1 changed files with 8 additions and 10 deletions
|
@ -1,7 +1,6 @@
|
|||
from flask import jsonify, Blueprint, url_for, request, abort
|
||||
|
||||
from suchwow.models import Post
|
||||
from suchwow import wownero
|
||||
from suchwow._models import Post
|
||||
|
||||
|
||||
bp = Blueprint("api", "api")
|
||||
|
@ -22,18 +21,17 @@ def api_list():
|
|||
limit = 30
|
||||
|
||||
all_posts = []
|
||||
posts = Post.select().where(Post.approved==True).order_by(Post.timestamp.desc()).limit(limit).offset(offset)
|
||||
posts = Post.select().where(
|
||||
Post.approved == True
|
||||
).order_by(
|
||||
Post.timestamp.desc()
|
||||
).limit(limit).offset(offset)
|
||||
for post in posts:
|
||||
wallet = wownero.Wallet()
|
||||
if wallet.connected:
|
||||
address = wallet.get_address(account=post.account_index)
|
||||
else:
|
||||
address = ''
|
||||
|
||||
payload = {
|
||||
'image': url_for('post.uploaded_file', filename=post.image_name, _external=True),
|
||||
'submitter': post.submitter,
|
||||
'address': address,
|
||||
'submitter': post.user.username,
|
||||
'address': post.address,
|
||||
'title': post.title,
|
||||
'text': post.text,
|
||||
'href': url_for('post.read', id=post.id, _external=True),
|
||||
|
|
Loading…
Reference in a new issue