mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 03:37:40 +00:00
6 lines
125 B
Ruby
6 lines
125 B
Ruby
class Subdomain
|
|
def self.matches?(request)
|
|
request.subdomain.present? && request.subdomain == 'pearlception'
|
|
end
|
|
end
|