mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-04-24 21:21:53 +09:00
8 lines
216 B
Ruby
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
|