22 lines
463 B
Ruby
22 lines
463 B
Ruby
# Copyright (c) 2010, Diaspora 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
|