@title = @message.title
+ render :action => "new"
+ elsif message.sender == current_user
+ @message = Message.new(
+ :recipient => message.recipient,
+ :title => "Re: #{message.title.sub(/^Re:\s*/, '')}",
+ :body => "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}"
+ )
+
+ @title = @message.title
+
render :action => "new"
else
flash[:notice] = t ".wrong_user", :user => current_user.display_name
# Set the message as being read or unread.
def mark
- @message = Message.where(:recipient => current_user).or(Message.where(:sender => current_user)).find(params[:message_id])
+ @message = current_user.messages.unscope(:where => :muted).find(params[:message_id])
if params[:mark] == "unread"
message_read = false
notice = t ".as_unread"
@message.message_read = message_read
if @message.save
flash[:notice] = notice
- redirect_to inbox_messages_path, :status => :see_other
+ if @message.muted?
+ redirect_to muted_messages_path, :status => :see_other
+ else
+ redirect_to inbox_messages_path, :status => :see_other
+ end
end
rescue ActiveRecord::RecordNotFound
@title = t "messages.no_such_message.title"