22 lines
504 B
Ruby
22 lines
504 B
Ruby
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
|
|
end
|
|
|
|
def create
|
|
@feed = Feed.import(params[:feed][:url])
|
|
redirect_to :action => :index, :notice => "Add the feed"
|
|
end
|
|
|
|
def import
|
|
fh = File.open(Rails.root.join("public", "uploads", params[:importer][:import_file].original_filename))
|
|
# TODO: Hier gehts weiter
|
|
end
|
|
end
|