X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5e9414365c667c8bd36010ae828dc6c68929cb68..b1a1d45576e30d1da7c4428417e2eec58cf442f5:/app/models/acl.rb diff --git a/app/models/acl.rb b/app/models/acl.rb index 2db7fb765..e2f163ea5 100644 --- a/app/models/acl.rb +++ b/app/models/acl.rb @@ -11,6 +11,10 @@ class Acl < ActiveRecord::Base self.match(address, domain).where(:k => "no_account_creation").exists? end + def self.no_note_comment(address, domain = nil) + self.match(address, domain).where(:k => "no_note_comment").exists? + end + def self.no_trace_download(address, domain = nil) self.match(address, domain).where(:k => "no_trace_download").exists? end