Only allow users to read their own messages.
This commit is contained in:
parent
2e2189ecb9
commit
8b62df8b9c
1 changed files with 5 additions and 6 deletions
|
@ -29,12 +29,11 @@ class MessageController < ApplicationController
|
|||
|
||||
def read
|
||||
@title = 'read message'
|
||||
if params[:message_id]
|
||||
id = params[:message_id]
|
||||
@message = Message.find_by_id(id)
|
||||
@message.message_read = 1
|
||||
@message.save
|
||||
end
|
||||
@message = Message.find(params[:message_id], :conditions => ["to_user_id = ?", @user.id])
|
||||
@message.message_read = 1
|
||||
@message.save
|
||||
rescue ActiveRecord::RecordNotFound
|
||||
render :none, :status => :not_found
|
||||
end
|
||||
|
||||
def inbox
|
||||
|
|
Loading…
Add table
Reference in a new issue