X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a57bc158fd9b8a8287786f2ab01ebeb2bbf2447f..8cef62cd2cec4a297e46b4f2a86c9afeadb3b283:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 17353fe96..9d9cf0f39 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -7,6 +7,7 @@ class SiteController < ApplicationController before_action :redirect_browse_params, :only => :index before_action :redirect_map_params, :only => [:index, :edit, :export] before_action :require_oauth, :only => [:index] + before_action :require_user, :only => [:id] before_action :update_totp, :only => [:index] authorize_resource :class => false @@ -107,8 +108,7 @@ class SiteController < ApplicationController end def communities - @locale = I18n.locale - @local_chapters = OsmCommunityIndex::LocalChapter.local_chapters_with_locale(@locale) + @local_chapters = Community.where(:type => "osm-lc").where.not(:id => "OSMF") end def export; end