mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 09:42:36 +02:00
6 lines
215 B
Ruby
6 lines
215 B
Ruby
get '/activity' do
|
|
#expires 7200, :public, :must_revalidate if self.class.production? # 2 hours
|
|
params[:activity] = 'global' # FIXME this is a bad hack
|
|
@events = Event.global_dataset.all
|
|
erb :'activity'
|
|
end
|