Skip to content

Commit

Permalink
FS-4919 - Renaming templates blueprint to template in-keeping with ot…
Browse files Browse the repository at this point in the history
…her blueprint names
  • Loading branch information
wjrm500 committed Dec 24, 2024
1 parent ce1de36 commit 3e4e8ca
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from flask import Blueprint, redirect, render_template, request, url_for
from werkzeug.utils import secure_filename

from app.blueprints.fund_builder.forms.templates import TemplateFormForm, TemplateUploadForm
from app.blueprints.template.forms import TemplateFormForm, TemplateUploadForm
from app.db.models.application_config import Form
from app.db.queries.application import (
delete_form,
Expand All @@ -19,7 +19,7 @@
template_bp = Blueprint(
"template_bp",
__name__,
url_prefix="/templates",
url_prefix="/template",
template_folder="templates",
)

Expand Down
2 changes: 1 addition & 1 deletion app/create_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from app.blueprints.fund.routes import fund_bp
from app.blueprints.fund_builder.routes import build_fund_bp
from app.blueprints.round.routes import round_bp
from app.blueprints.templates.routes import template_bp
from app.blueprints.template.routes import template_bp

PUBLIC_ROUTES = [
"static",
Expand Down
Empty file.

0 comments on commit 3e4e8ca

Please sign in to comment.