diff options
author | hellekin <hellekin@cepheide.org> | 2020-10-08 17:38:04 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-10-08 17:38:04 +0200 |
commit | c0a3378d2587c9fda27e97645799dd7a008819a1 (patch) | |
tree | 9bd6b99848e6c906cbfc921c545dda4d0d93562b /app/controllers | |
parent | 00ac912be46d858379fb5685b7290fe8d60001ef (diff) | |
download | incommon-map-c0a3378d2587c9fda27e97645799dd7a008819a1.tar.gz |
Make map more beautiful
This commit introduces a few things:
1. New `content_for` hooks for :debug, :head, and :body_end so that views
code remains consistent and clean
2. Fullscreen map!
3. Welcome#index view, the Rails way
It also moves controller-related code to the controller,
Enjoy!
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/welcome_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb index 5e80d26..48167b2 100644 --- a/app/controllers/welcome_controller.rb +++ b/app/controllers/welcome_controller.rb @@ -1,6 +1,8 @@ class WelcomeController < ApplicationController # GET / def index + @resources = Resource.order(:uuid).page params[:page] + Rails.logger.info "WECLOME ///// #{@resources&.count || 0}" end # GET /authenticate(/:token) |