This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
class Home < Application
|
|
def index
|
|
render
|
|
end
|
|
|
|
def acceptable_use
|
|
render
|
|
end
|
|
|
|
def hall_of_fame
|
|
@top_oneness = Photo.find :all, :order => 'oneness DESC, id DESC', :limit => 10, :conditions => 'oneness > 0'
|
|
render
|
|
end
|
|
|
|
def disclaimer
|
|
render
|
|
end
|
|
end
|