class FeedsController < ApplicationController
# Show all feeds
def index
@feeds = Feed.all
end
# Show a single feed
def show
@items = Feed.find(params[:id]).items
render :layout => false
def create
@feed = Feed.import(params[:feed][:url])
redirect_to :action => :index, :notice => "Add the feed"
def import
fh = File.open(Rails.root.join("public", "uploads", params[:importer][:import_file].original_filename))
# TODO: Hier gehts weiter