This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2008-10-01 02:19:35 -04:00
|
|
|
class Home < Application
|
|
|
|
def index
|
|
|
|
render
|
|
|
|
end
|
|
|
|
|
|
|
|
def acceptable_use
|
|
|
|
render
|
|
|
|
end
|
2008-10-11 04:22:58 -04:00
|
|
|
|
|
|
|
def hall_of_fame
|
2008-11-23 02:41:25 -05:00
|
|
|
@top_oneness = Photo.find :all, :order => 'oneness DESC, id DESC', :limit => 10, :conditions => 'oneness > 0 AND facebook_id IS NULL'
|
2008-10-11 04:22:58 -04:00
|
|
|
render
|
|
|
|
end
|
2008-10-11 18:36:46 -04:00
|
|
|
|
|
|
|
def disclaimer
|
|
|
|
render
|
|
|
|
end
|
2008-10-01 02:19:35 -04:00
|
|
|
end
|