]> git.lizzy.rs Git - cheatdb.git/commit
Refactor endpoints to use blueprints instead
authorrubenwardy <rw@rubenwardy.com>
Fri, 15 Nov 2019 23:51:42 +0000 (23:51 +0000)
committerrubenwardy <rw@rubenwardy.com>
Fri, 15 Nov 2019 23:51:42 +0000 (23:51 +0000)
commit64f131ae27a7332245b5a4eb8e1e4879d7d99578
treea0b4101ca9c2132a072f1586c0df693583c91cf7
parent015abe5a2507ad02273bc89953016c386aae4457
Refactor endpoints to use blueprints instead
78 files changed:
.gitignore
Dockerfile
app/__init__.py
app/blueprints/__init__.py [new file with mode: 0644]
app/blueprints/admin/__init__.py [new file with mode: 0644]
app/blueprints/admin/admin.py [new file with mode: 0644]
app/blueprints/admin/licenseseditor.py [new file with mode: 0644]
app/blueprints/admin/tagseditor.py [new file with mode: 0644]
app/blueprints/admin/versioneditor.py [new file with mode: 0644]
app/blueprints/api/__init__.py [new file with mode: 0644]
app/blueprints/homepage/__init__.py [new file with mode: 0644]
app/blueprints/metapackages/__init__.py [new file with mode: 0644]
app/blueprints/notifications/__init__.py [new file with mode: 0644]
app/blueprints/packages/__init__.py [new file with mode: 0644]
app/blueprints/packages/editrequests.py [new file with mode: 0644]
app/blueprints/packages/packages.py [new file with mode: 0644]
app/blueprints/packages/releases.py [new file with mode: 0644]
app/blueprints/packages/screenshots.py [new file with mode: 0644]
app/blueprints/tasks/__init__.py [new file with mode: 0644]
app/blueprints/threads/__init__.py [new file with mode: 0644]
app/blueprints/thumbnails/__init__.py [new file with mode: 0644]
app/blueprints/todo/__init__.py [new file with mode: 0644]
app/blueprints/users/__init__.py [new file with mode: 0644]
app/blueprints/users/githublogin.py [new file with mode: 0644]
app/blueprints/users/profile.py [new file with mode: 0644]
app/models.py
app/sass.py [new file with mode: 0644]
app/tasks/emails.py
app/tasks/importtasks.py
app/template_filters.py [new file with mode: 0644]
app/templates/admin/licenses/edit.html
app/templates/admin/licenses/list.html
app/templates/admin/list.html
app/templates/admin/switch_user.html [new file with mode: 0644]
app/templates/admin/switch_user_page.html [deleted file]
app/templates/admin/tags/edit.html
app/templates/admin/tags/list.html
app/templates/admin/versions/edit.html
app/templates/admin/versions/list.html
app/templates/base.html
app/templates/emails/verify.html
app/templates/flask_user/login.html
app/templates/index.html
app/templates/macros/threads.html
app/templates/macros/topics.html
app/templates/meta/list.html
app/templates/notifications/list.html
app/templates/packages/list.html
app/templates/packages/release_edit.html
app/templates/packages/view.html
app/templates/tasks/view.html
app/templates/todo/list.html
app/templates/todo/topics.html
app/templates/users/claim.html
app/templates/users/list.html
app/templates/users/user_profile_page.html
app/views/__init__.py [deleted file]
app/views/admin/__init__.py [deleted file]
app/views/admin/admin.py [deleted file]
app/views/admin/licenseseditor.py [deleted file]
app/views/admin/tagseditor.py [deleted file]
app/views/admin/todo.py [deleted file]
app/views/admin/versioneditor.py [deleted file]
app/views/api.py [deleted file]
app/views/meta.py [deleted file]
app/views/packages/__init__.py [deleted file]
app/views/packages/editrequests.py [deleted file]
app/views/packages/packages.py [deleted file]
app/views/packages/releases.py [deleted file]
app/views/packages/screenshots.py [deleted file]
app/views/sass.py [deleted file]
app/views/tasks.py [deleted file]
app/views/threads.py [deleted file]
app/views/thumbnails.py [deleted file]
app/views/users/__init__.py [deleted file]
app/views/users/githublogin.py [deleted file]
app/views/users/notifications.py [deleted file]
app/views/users/users.py [deleted file]