X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a5f412468107055f38b3f537b4bb8a01aec1db34..9b39577f4646f3624cf24aaa04b06b6f053c3270:/app/controllers/notes_controller.rb diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index 7c6b033ca..7d6163f48 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -1,5 +1,5 @@ class NotesController < ApplicationController - layout "site", :only => [:mine] + layout "site" before_action :check_api_readable before_action :authorize_web @@ -7,15 +7,15 @@ class NotesController < ApplicationController authorize_resource before_action :set_locale - around_action :api_call_handle_error, :api_call_timeout + around_action :web_timeout ## # Display a list of notes by a specified user - def mine + def index if params[:display_name] if @user = User.active.find_by(:display_name => params[:display_name]) @params = params.permit(:display_name) - @title = t "notes.mine.title", :user => @user.display_name + @title = t ".title", :user => @user.display_name @page = (params[:page] || 1).to_i @page_size = 10 @notes = @user.notes