boomerdigital/solidus_shipstation

View on GitHub
app/helpers/spree/date_param_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree

  module DateParamHelper

    DATE_FORMAT = '%m/%d/%Y %H:%M %Z'.freeze

    private

    def date_param(name)
      return if params[name].nil?
      Time.strptime(params[name] + ' UTC', DATE_FORMAT)
    end

  end

end