discourse/lib/route_formats.rb

12 lines
126 B
Ruby
Raw Normal View History

module RouteFormats
def self.username
/[\w.\-]+?/
end
def self.backup
/.+\.(sql\.gz|tar\.gz|tgz)/i
end
end