You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
json.hackathon do
|
|
json.(@hackathon, :id, :name, :description)
|
|
json.hackathon_users_count @hackathon_users_count
|
|
end
|
|
json.hacks_count @hacks_count
|
|
json.hacks @hacks do |hack|
|
|
json.(hack, :id, :name, :description, :hack_users_count)
|
|
json.entry_info hack.entry_info(current_user.id)
|
|
end
|
|
|