zammad/app/controllers/rss_controller.rb
Martin Edenhofer e5c35021ac Updated header.
2014-02-03 20:24:49 +01:00

30 lines
612 B
Ruby

# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
class RssController < ApplicationController
before_filter :authentication_check
=begin
Resource:
GET /api/v1/rss_fetch
Response:
{
...
}
Test:
curl http://localhost/api/v1/rss_fetch.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X GET
=end
def fetch
items = Rss.fetch(params[:url], params[:limit])
if items == nil
render :json => { :message => "failed to fetch #{ params[:url] }", :status => :unprocessable_entity }
return
end
render :json => { :items => items }
end
end