X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f7367baa6b6091df3eabbe8b7a4b99e3fa314743..b5046fdcd02b7ae9c10f22fa0b483e6eb2e06fa3:/app/controllers/notes_controller.rb?ds=sidebyside diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index 7d6163f48..4c1bac193 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -1,8 +1,9 @@ class NotesController < ApplicationController - layout "site" + layout :map_layout before_action :check_api_readable before_action :authorize_web + before_action :require_oauth authorize_resource @@ -21,12 +22,16 @@ class NotesController < ApplicationController @notes = @user.notes @notes = @notes.visible unless current_user&.moderator? @notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author) + + render :layout => "site" else @title = t "users.no_such_user.title" @not_found_user = params[:display_name] - render :template => "users/no_such_user", :status => :not_found + render :template => "users/no_such_user", :status => :not_found, :layout => "site" end end end + + def new; end end