mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
8 lines
219 B
Ruby
8 lines
219 B
Ruby
class Rss::ProjectsController < Rss::RssController
|
|
|
|
def index
|
|
@projects = Project.includes(:project_image, :users).published.order('created_at desc').limit(10)
|
|
@fab_name = Setting.get('fablab_name')
|
|
end
|
|
end
|