1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-28 01:29:39 +02:00
Maybe/app/helpers/auth_messages_helper.rb

6 lines
152 B
Ruby
Raw Normal View History

2024-02-02 23:58:09 -06:00
module AuthMessagesHelper
2024-02-03 00:11:50 -06:00
def auth_messages(form)
render "shared/auth_messages", flash: flash, errors: form.object.errors.full_messages
2024-02-02 23:58:09 -06:00
end
end