Sha256: 3fe3da375188253dbb09077a771b84a36bce222e93b785d46592519dfc11a5d8
Contents?: true
Size: 251 Bytes
Versions: 21
Compression:
Stored size: 251 Bytes
Contents
module DiscoApp::Concerns::Subscription extend ActiveSupport::Concern included do belongs_to :shop belongs_to :plan enum status: [:active, :replaced, :cancelled] scope :active, -> { where status: statuses[:active] } end end
Version data entries
21 entries across 21 versions & 1 rubygems