This commit is contained in:
Seth Call 2020-08-22 16:19:15 -05:00
parent b1ae94db1a
commit cc69aa098e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ module JamRuby
self.table_name = "arses"
@@log = Logging.logger[Ars]
def active_arses(beta)
def self.active_arses(beta)
Ars.where(active: true, beta: beta).where('ip is not NULL').where("ip != ''").all
end
end