diaspora/app/helpers/albums_helper.rb
2010-09-15 10:58:48 -07:00

22 lines
465 B
Ruby

# Copyright (c) 2010, Disapora Inc. This file is
# licensed under the Affero General Public License version 3. See
# the COPYRIGHT file.
module AlbumsHelper
def friends_albums_link
if params[:friends]
"Friends Albums"
else
link_to 'Friends Albums', albums_path({:friends => true})
end
end
def your_albums_link
if params[:friends]
link_to 'Your Albums', albums_path
else
'Your Albums'
end
end
end