module Gamification::Concerns::Rewardable extend ActiveSupport::Concern included do has_many :rewards, class_name: '::Gamification::Reward', as: :rewardable has_many :goals, through: :rewards, class_name: '::Gamification::Goal' def medals rewards.includes(goal: :medal).collect(&:medal).compact! || [] end end end