orbit4-5/config/initializers/keyword_constraint.rb

6 lines
154 B
Ruby
Raw Normal View History

class KeywordConstraint
def matches?(request)
keywords = %w{admin member desktop}
keywords.all? { |k| !request.url.include?(k) }
end
end