blob: d9c2010286a0f006d8539d373c547eab1001134f (
plain)
1
2
3
4
5
6
7
8
|
module ConnectionLinksHelper
def connection_link_type_label_pairs
Chouette::ConnectionLink
.connection_link_types
.zip_map { |type| t("connection_link_types.label.#{type}") }
end
end
|