This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/app/controllers/feeds_controller.rb
2012-04-08 04:04:37 +02:00

12 lines
192 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
end
end