Guest User

Untitled

a guest
Feb 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class TasksController < ApplicationController
  2. before_filter :find_tasks
  3.  
  4. private
  5.  
  6. find_tasks
  7. Task.find_all_by_account_id(account_id)
  8. # or if you have an account object... try to :include the tasks into that when it's loaded.
  9. end
  10. end
Add Comment
Please, Sign In to add comment