Skip to content
Snippets Groups Projects
Commit 7728b4d1 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 0.0.17 Release

* Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise
* Fixed #128 add fields from csv to RkiLandkreiseImport
* Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021
* Fixed #140 move WhoImport to RKI in: rk_service_import.py
* Fixed #125 implement RkiLandkreise
* Fixed #126 implement RkiBundeslaenderImport

### 0.0.18 Release
* Fixed #39 SQLalchemy instead of SQL: AllModelClasses.remove_all()
* Fixed #40 SQLalchemy instead of SQL: EcdcImport.get_date_rep()
* Fixed #41 SQLalchemy instead of SQL: EcdcImport.get_countries_of_continent()
* Fixed #107 SQLalchemy instead of SQL in: EcdcImport.get_countries_of_continent
* Fixed #109 SQLalchemy instead of SQL in: EcdcImport.get_date_rep
* Fixed #110 SQLalchemy instead of SQL in: EcdcImport.get_continent
parent 86121a3e
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ def url_alive_message_start():
task_admin_alive_message.apply_async()
flash("alive_message_task started")
app.logger.info("url_alive_message_start [done]")
return redirect(url_for('admin.url_admin_tasks'))
return redirect(url_for('app_admin.url_admin_tasks'))
@app_admin.route('/database/dump')
......@@ -87,7 +87,7 @@ def url_admin_database_dump():
admin_service.run_admin_database_dump()
flash("admin_service.run_admin_database_dump started")
app.logger.info("url_admin_database_dump [done]")
return redirect(url_for('admin.url_admin_tasks'))
return redirect(url_for('app_admin.url_admin_tasks'))
@app_admin.route('/database/import')
......@@ -96,7 +96,7 @@ def url_admin_database_import():
admin_service.run_admin_database_import()
flash("admin_service.run_admin_database_import started")
app.logger.info("url_admin_database_import [done]")
return redirect(url_for('admin.url_admin_tasks'))
return redirect(url_for('app_admin.url_admin_tasks'))
@app_admin.route('/database/dropcreate/only')
def url_admin_database_dropcreate_only():
......@@ -104,7 +104,7 @@ def url_admin_database_dropcreate_only():
flash("admin_service.run_admin_database_drop started")
admin_service.run_admin_database_drop()
app.logger.info("url_admin_database_drop [done]")
return redirect(url_for('admin.url_admin_tasks'))
return redirect(url_for('app_admin.url_admin_tasks'))
@app_admin.route('/database/drop')
def url_admin_database_drop():
......@@ -119,4 +119,4 @@ def url_admin_database_drop():
flash("task_admin_database_drop_create async started")
task_admin_database_drop_create.apply_async()
app.logger.info("url_admin_database_drop [done]")
return redirect(url_for('admin.url_admin_tasks'))
return redirect(url_for('app_admin.url_admin_tasks'))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment