diaspora/app/helpers/people_helper.rb
2010-09-15 17:56:18 -07:00

16 lines
312 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