mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-05-30 05:56:42 +09:00
df76a227dc
First open source release of Campfire 🎉
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
|