Files
discourse/lib/route_format.rb
T

14 lines
157 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module RouteFormat
def self.username
/[%\w.\-]+?/
end
def self.backup
/.+\.(sql\.gz|tar\.gz|tgz)/i
end
end