Improving friend capabilities so you can now add and remove friends as you wish. Friends will be notified when you add them. You can view a list of friends on your profile page (which has been reorganised a little).

This commit is contained in:
Dan Karran 2007-10-08 22:21:15 +00:00
parent 822e48850d
commit d320673cc7
6 changed files with 77 additions and 24 deletions

View file

@ -49,4 +49,14 @@ class Notifier < ActionMailer::Base
@body['readurl'] = "http://#{SERVER_URL}/message/read/#{message.id}"
@body['replyurl'] = "http://#{SERVER_URL}/message/new/#{message.from_user_id}"
end
def friend_notification(friend)
@friend = User.find_by_id(friend.user_id)
@new_friend = User.find_by_id(friend.friend_user_id)
@recipients = @new_friend.email
@from = 'abuse@openstreetmap.org'
@subject = "[OpenStreetMap] #{@friend.display_name} added you as a friend"
@body['user'] = @friend.display_name
@body['userurl'] = "http://#{SERVER_URL}/user/#{@friend.display_name}"
end
end