Skip to content

Commit 2991254

Browse files
authored
Remove unneeded frontend app (#713)
1 parent 59281c7 commit 2991254

File tree

16 files changed

+1
-160
lines changed

16 files changed

+1
-160
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ DJANGO_ANON_USER_THROTTLE_RATE ANON_USER_THROTTLE_RATE None
5959
DJANGO_COMMON_USER_THROTTLE_RATE COMMON_USER_THROTTLE_RATE None 180/min
6060
DJANGO_NON_STAFF_USER_THROTTLE_RATE NON_STAFF_USER_THROTTLE_RATE 3/min 3/min
6161
OAUTH_REDIRECT_URI OAUTH_REDIRECT_URI http://localhost:8000/oauth-landing.html http://localhost:8000/oauth-landing.html
62-
OSMCHA_FRONTEND_VERSION OSMCHA_FRONTEND_VERSION oh-pages oh-pages
6362
DJANGO_ENABLE_CHANGESET_COMMENTS ENABLE_POST_CHANGESET_COMMENTS False False
6463
DJANGO_OSM_COMMENTS_API_KEY OSM_COMMENTS_API_KEY '' ''
6564
======================================= ================================= ========================================= ===========================================

config/settings/common.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
'osmchadjango.users', # custom users app
6666
'osmchadjango.changeset',
6767
'osmchadjango.supervise',
68-
'osmchadjango.frontend',
6968
'osmchadjango.roulette_integration',
7069
)
7170

@@ -358,11 +357,6 @@
358357
default='https://planet.openstreetmap.org/replication/changesets/'
359358
)
360359

361-
# FRONTEND SETTINGS
362-
# -----------------------------------------------------------------------------
363-
# Version or any valid git branch tag of front-end code
364-
OSMCHA_FRONTEND_VERSION = env('OSMCHA_FRONTEND_VERSION', default='oh-pages')
365-
366360
# MapRoulette API CONFIG
367361
MAP_ROULETTE_API_KEY = env('MAP_ROULETTE_API_KEY', default=None)
368362
MAP_ROULETTE_API_URL = env('MAP_ROULETTE_API_URL', default="https://maproulette.org/api/v2/")

config/urls.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ def health_check(request):
8686
include(api_urls)
8787
),
8888

89-
# frontend urls
90-
path('', include("osmchadjango.frontend.urls", namespace="frontend")),
91-
9289
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
9390

9491
if settings.DEBUG:

osmchadjango/frontend/__init__.py

Whitespace-only changes.

osmchadjango/frontend/admin.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

osmchadjango/frontend/apps.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

osmchadjango/frontend/management/__init__.py

Whitespace-only changes.

osmchadjango/frontend/management/commands/__init__.py

Whitespace-only changes.

osmchadjango/frontend/management/commands/update_frontend.py

Lines changed: 0 additions & 59 deletions
This file was deleted.

osmchadjango/frontend/migrations/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)