diaspora/app/controllers/apps_controller.rb
2012-01-27 02:23:37 -08:00

9 lines
254 B
Ruby

class AppsController < ApplicationController
def show
@app = 'cubbies'
@posts = ActivityStreams::Photo.where(:public => true).for_a_stream(max_time, 'created_at')
@commenting_disabled = true
@people = []
@people_count = 0
end
end