Remove playground blueprint

This commit is contained in:
Stephan Porada 2020-09-21 10:55:47 +02:00
parent 6ad6251585
commit 3572966190
4 changed files with 0 additions and 15 deletions

View File

@ -1,5 +0,0 @@
from flask import Blueprint
playground = Blueprint('playground', __name__)
from . import events, views # noqa

View File

@ -1,10 +0,0 @@
from flask import render_template
from flask_login import login_required
from . import playground
@playground.route('/')
@login_required
def index():
return render_template('playground/index.html.j2',
title='Playground')