Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added mainDecks #56

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def allDecks(username):
return redirect('/login')
else:
user = db.users.find_one({'user_id': current_user.id})
return render_template('decks.html', mainDecks = user['mainDecks'], personalDecks = user['personalDecks'])
mainDecks = db.decks.find({})
return render_template('decks.html', mainDecks = mainDecks, personalDecks = user['personalDecks'])


@app.route("/<username>/<deckTitle>")
Expand Down
2 changes: 1 addition & 1 deletion authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def auth_signup():
return render_template('signup.html', username_taken=False, passwords_dont_match=True)
else:
user = User(user_id, generate_password_hash(password))
db['users'].insert_one({"user_id": user.id, "password": user.password, 'mainDecks': [], 'personalDecks': []})
db['users'].insert_one({"user_id": user.id, "password": user.password, 'personalDecks': []})
login_user(user)
# TODO: Redirect to the appropriate page for the logged in user
return redirect('/' + user_id + '/decks')
Expand Down
Loading