Sha256: 162023746536263e121d01bb0eb68c1c695d490d01527db9ca025685e2dc7238
Contents?: true
Size: 338 Bytes
Versions: 13
Compression:
Stored size: 338 Bytes
Contents
# frozen_string_literal: true module GroupMetrics # Tabulate count of Likes within a study week for a Group. class WeeklyLikesCount < WeeklyCount self.table_name = "social_networking_likes" 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