From 646e5e729d7d389a6cb708c5a9e91757df62c8f3 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Sat, 13 Jul 2024 10:39:30 +0200 Subject: [PATCH] Add REVERSE_GEOCODING_ENABLED env var to README --- README.md | 1 + config/routes.rb | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index be333e24..0fb1bf8e 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,7 @@ Feel free to change them both in the Account section. | TIME_ZONE | time zone, e.g. `Europe/Berlin`, full list is [here](https://github.com/Freika/dawarich/issues/27#issuecomment-2094721396) | | APPLICATION_HOSTS | list of host of the application, e.g. `localhost,dawarich.example.com` | | BACKGROUND_PROCESSING_CONCURRENCY (only for dawarich_sidekiq service) | Number of simultaneously processed background jobs, default is 10 | +| REVERSE_GEOCODING_ENABLED | `true` or `false`, this env var allows you to disable reverse geocoding feature entirely | ## Star History diff --git a/config/routes.rb b/config/routes.rb index 9ff93595..64500399 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -46,8 +46,6 @@ Rails.application.routes.draw do namespace :api do namespace :v1 do - resources :points, only: :create # TODO: Deprecate in 1.0 - namespace :overland do resources :batches, only: :create end