update recording notify to work with new workflow

This commit is contained in:
Zachary Chai
2017-02-17 14:52:12 -05:00
parent dbfed8eba4
commit 63fbc27bca
4 changed files with 8 additions and 5 deletions

View File

@ -19,7 +19,7 @@ class NotificationMailer < ActionMailer::Base
def recording_ready_email(user)
@user = user
@room_url = resource_url(resource: "rooms", id: user.encrypted_id)
@room_url = meeting_room_url(resource: 'rooms', id: user.encrypted_id)
mail(to: user.email, subject: t('.subject'))
end
end