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.
10 lines
213 B
10 lines
213 B
5 years ago
|
json.hackathon do
|
||
|
json.(@hackathon, :id, :name, :description)
|
||
|
json.hackathon_users_count @hackathon_users_count
|
||
|
end
|
||
|
|
||
|
json.hacks @hacks do |hack|
|
||
|
json.(hack, :id, :name, :description, :hack_users_count)
|
||
|
end
|
||
|
|