Skip to content

Commit

Permalink
adding category page
Browse files Browse the repository at this point in the history
  • Loading branch information
caseybecking committed Nov 18, 2024
1 parent 59a9a2e commit 5a60124
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/categories/controllery.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Blueprint, render_template, request, redirect, url_for
from flask_login import logout_user, login_required
import requests

categories_blueprint = Blueprint('categories', __name__)

@categories_blueprint.route('categories')
@login_required
def

0 comments on commit 5a60124

Please sign in to comment.