Move browse#new_note to notes#new

This allows a more resourceful routing approach.
This commit is contained in:
Andy Allan 2023-01-25 19:22:10 +00:00
parent f7367baa6b
commit b5046fdcd0
6 changed files with 22 additions and 14 deletions

View file

@ -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