Guest User

Untitled

a guest
Jul 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. named_scope :for_user, lambda{ |user|
  2. conditions = user.is_admin? ? '': ['accounts.id = ?',user.account.id]
  3. {:joins => 'left join accounts on accounts.id = projects.account_id', :conditions=> conditions}
  4. }
Add Comment
Please, Sign In to add comment