Lookup user before action in user's notes list
This commit is contained in:
parent
2d39ba7954
commit
7de9f6a977
1 changed files with 9 additions and 14 deletions
|
@ -9,14 +9,13 @@ class NotesController < ApplicationController
|
|||
|
||||
authorize_resource
|
||||
|
||||
before_action :lookup_user, :only => [:index]
|
||||
before_action :set_locale
|
||||
around_action :web_timeout
|
||||
|
||||
##
|
||||
# Display a list of notes by a specified user
|
||||
def index
|
||||
if params[:display_name]
|
||||
if @user = User.active.find_by(:display_name => params[:display_name])
|
||||
@params = params.permit(:display_name)
|
||||
@title = t ".title", :user => @user.display_name
|
||||
@page = (params[:page] || 1).to_i
|
||||
|
@ -26,10 +25,6 @@ class NotesController < ApplicationController
|
|||
@notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author)
|
||||
|
||||
render :layout => "site"
|
||||
else
|
||||
render_unknown_user params[:display_name]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def show
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue