diaspora/app/helpers/people_helper.rb
2010-09-16 10:07:59 +08:00

16 lines
306 B
Ruby

# Copyright (c) 2010, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3. See
# the COPYRIGHT file.
module PeopleHelper
def search_or_index
if params[:q]
" results for #{params[:q]}"
else
" people on pod is aware of"
end
end
end