8 lines
134 B
Ruby
8 lines
134 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module MicropostsHelper
|
||
|
def tag_string(micropost)
|
||
|
micropost.tags.map(&:name).join(" ")
|
||
|
end
|
||
|
end
|