Guest User

Untitled

a guest
Nov 17th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.21 KB | None | 0 0
  1. class CompaniesDecorator < Draper::DecoratedEnumerableProxy
  2.  def limit
  3.    CompanyDecorator.decorate @wrapped_collection.limit
  4.  end
  5.  
  6.  def q(*args)
  7.    CompanyDecorator.decorate @wrapped_collection.q(args)
  8.  end
  9. end
Add Comment
Please, Sign In to add comment