Sha256: f641e6f04faec582b7e38fd8acc32c9094637d37f463df0652df61d55082b78a
Contents?: true
Size: 334 Bytes
Versions: 5
Compression:
Stored size: 334 Bytes
Contents
# frozen_string_literal: true module SolidusPromotions 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
5 entries across 5 versions & 1 rubygems