1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-04 15:24:23 +01:00
fab-manager/app/controllers/rss/projects_controller.rb

8 lines
235 B
Ruby
Raw Normal View History

2016-09-29 10:53:20 +02:00
class Rss::ProjectsController < Rss::RssController
def index
@projects = Project.includes(:project_image, :users).published.order('created_at desc').limit(10)
@fab_name = Setting.find_by(name: 'fablab_name').value
end
end