gistflow/gistflow

View on GitHub
app/controllers/sitemap_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SitemapController < ApplicationController
  def show
    @tags = Tag.all
    @posts = Post.not_private.all
    @users = User.all
    respond_to do |format|
      format.xml
    end
  end
end