1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/helpers/relationships_helper.rb

12 lines
238 B
Ruby
Raw Normal View History

2019-08-14 22:10:12 -04:00
# frozen_string_literal: true
module RelationshipsHelper
def relationship_from_date_or_none(relationship)
if relationship&.from_date.blank?
2019-08-28 14:21:35 -04:00
none
else
localize relationship.from_date, format: :long
end
end
2019-08-14 22:10:12 -04:00
end