Sha256: 7b660c63066ba7254e8e46de58f0621d1237b4969afa96bcc1ff522aaaa17fa2
Contents?: true
Size: 347 Bytes
Versions: 13
Compression:
Stored size: 347 Bytes
Contents
# frozen_string_literal: true module GroupMetrics # Tabulate count of Comments within a study week for a Group. class WeeklyCommentsCount < WeeklyCount self.table_name = "social_networking_comments" def self.fetch(group_id) return {} unless ActiveRecord::Base.connection.table_exists?(table_name) super end end end
Version data entries
13 entries across 13 versions & 1 rubygems