blob: a49637878ceb17f4209cf093dc76988a19425107 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | module V1
  class MessagesController < ApiController
    before_filter :require_login
    def index
      render json: current_user.messages
    end
    def update
      if message = Message.find(params[:id])
        message.mark_as_read_by(current_user)
        message.save
        render json: success(:marked_as_read)
      else
        render json: error(:not_found), status: :not_found
      end
    end
  end
end
 |