mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:52:12 +08:00
7 lines
107 B
Ruby
7 lines
107 B
Ruby
|
module TopicsHelper
|
||
|
|
||
|
def render_topic_title(topic)
|
||
|
link_to(topic.title,topic.relative_url)
|
||
|
end
|
||
|
end
|