Files
once-campfire/app/helpers/users_helper.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

8 lines
216 B
Ruby

module UsersHelper
def button_to_direct_room_with(user)
button_to rooms_directs_path(user_ids: [ user.id ]), class: "btn btn--primary full-width txt--large" do
image_tag("messages.svg")
end
end
end