mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 22:15:14 +00:00
7 lines
149 B
Ruby
7 lines
149 B
Ruby
class SitemapController < ApplicationController
|
|
def sitemap
|
|
respond_to do |format|
|
|
format.xml { render layout: false }
|
|
end
|
|
end
|
|
end
|