Files
aperonight/app/helpers/application_helper.rb
2025-08-28 15:11:42 +02:00

10 lines
197 B
Ruby
Executable File

module ApplicationHelper
# Convert prince from cents to float
def format_price(cents)
(cents.to_f / 100).round(2)
end
# Include flash message helpers
include FlashMessagesHelper
end