Skip to content
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
2 changes: 2 additions & 0 deletions packet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@

import csh_ldap
from flask import Flask
from flask_gzip import Gzip
from flask_migrate import Migrate
from flask_pyoidc.flask_pyoidc import OIDCAuthentication
from flask_pyoidc.provider_configuration import ProviderConfiguration, ClientMetadata
from flask_sqlalchemy import SQLAlchemy

app = Flask(__name__)
gzip = Gzip(app)

# Load default configuration and any environment variable overrides
_root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
Expand Down
1 change: 0 additions & 1 deletion packet/templates/extend/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
{% endblock %}

{% block includes %}

{% endblock %}

{% block scripts %}
Expand Down
1 change: 0 additions & 1 deletion packet/templates/extend/email.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@
<body>
{% block body %}
{% endblock %}

</body>
</html>
1 change: 0 additions & 1 deletion packet/templates/include/head.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<head>

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="CSH Web Packet">
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Flask~=1.1.0
Flask-pyoidc~=2.2.0
Flask-Mail~=0.9.1
Flask-Gzip~=0.2
flask_sqlalchemy~=2.3.2
psycopg2-binary~=2.8.3
Flask-Migrate~=2.2.1
Expand Down