diff options
author | Azul <azul@leap.se> | 2013-08-28 11:53:58 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-08-30 14:54:30 +0200 |
commit | 7bb1a16d4eee3eb3ef36c6f5b4fc7968e3da7dd6 (patch) | |
tree | 75df9def4e9289b5373cea6108616405896491e1 /help/app | |
parent | 060e06daa065f02b811dfe12850b101a62c12c8d (diff) |
there's no need for User#find_by_param. clean it up
Diffstat (limited to 'help/app')
-rw-r--r-- | help/app/controllers/tickets_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help/app/controllers/tickets_controller.rb b/help/app/controllers/tickets_controller.rb index a03ef22..a669e19 100644 --- a/help/app/controllers/tickets_controller.rb +++ b/help/app/controllers/tickets_controller.rb @@ -138,7 +138,7 @@ class TicketsController < ApplicationController def fetch_user if params[:user_id] - @user = User.find_by_param(params[:user_id]) + @user = User.find(params[:user_id]) end end |