1234567891011121314151617181920212223242526 |
- class RecentViewedController < ApplicationController
- before_filter :authentication_check
- =begin
- Resource:
- GET /api/recent_viewed
- Response:
- {
- ...
- }
- Test:
- curl http://localhost/api/recent_viewed.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X GET
- =end
- def recent_viewed
- recent_viewed = RecentView.list_fulldata( current_user, 10 )
- # return result
- render :json => recent_viewed
- end
- end
|