X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/baf10cd39289cd7e94a819305e46f43e85a136c6..1d09cfcb18d589ea494bf5223f2eb9e0a773d7c6:/app/models/acl.rb diff --git a/app/models/acl.rb b/app/models/acl.rb index 8bb4ae4b9..cf83e673c 100644 --- a/app/models/acl.rb +++ b/app/models/acl.rb @@ -1,4 +1,23 @@ +# == Schema Information +# +# Table name: acls +# +# id :bigint(8) not null, primary key +# address :inet +# k :string not null +# v :string +# domain :string +# +# Indexes +# +# acls_k_idx (k) +# index_acls_on_address (address) USING gist +# index_acls_on_domain (domain) +# + class Acl < ActiveRecord::Base + validates :k, :presence => true + def self.match(address, domain = nil) if domain Acl.where("address >>= ? OR domain = ?", address, domain)