Models a Forge user's account.
Returns a collection of Modules owned by the user.
@note Because there is no related module data in the record, we can't
use a {#lazy_collection} here.
@return [PaginatedCollection<Module>] the modules owned by this user
# File lib/puppet_forge/v3/user.rb, line 18 def modules Module.where(:owner => username) end