jcraigk/phishin

View on GitHub
app/controllers/feeds_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class FeedsController < ApplicationController
  def rss
    @announcements = Announcement.order(created_at: :desc)
    render layout: false
  end
end