Sha256: b4da04657ca61f4bb4c3fc29067bad571560c299f7a9fda6b2d84cbc95aabc02
Contents?: true
Size: 342 Bytes
Versions: 4
Compression:
Stored size: 342 Bytes
Contents
# frozen_string_literal: true module SolidusFriendlyPromotions module Admin module PromotionsHelper def admin_promotion_status(promotion) return :active if promotion.active? return :not_started if promotion.not_started? return :expired if promotion.expired? :inactive end end end end
Version data entries
4 entries across 4 versions & 1 rubygems