mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
5 lines
No EOL
155 B
Ruby
5 lines
No EOL
155 B
Ruby
module NamePartFinder
|
|
def find_by_namepart(namepart)
|
|
find_by_name(namepart) || find(:first, :conditions => ["name LIKE ?", namepart + '%'])
|
|
end
|
|
end |