The play framework has a function in the view to create an SEO friendly URL via the slugify() function. There does not seem to be an "unslugify" function, so how do you lookup models from the slugified parameter?
If for instance I have a Blog model which has a title property set to "hello world", slugify would produce "hello-world". If I then perform a query Blog.find("byTitle", title) where title is the slugified title, it will return no results. How can you lookup a model using the provided slug?