We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GET /modules/repo/:name/:version/dependencies.yml controllers.Modules.dependencies(name, version)
and in modules.scala
In modulesLookup.findDependencies(name, version) match { case Some(yml) => Ok(yml) case None => Ok("self: play -> " + name + " " + version) }
So we will always have some content even if the module doesn't exist. ex https://www.playframework.com/modules/repo/starwars/1.5/dependencies.yml
The text was updated successfully, but these errors were encountered:
* [playframework#109] fix(module): send notFound result on dependenci…
22c406d
…es.yml request if module doesn't exist
* [#109] fix(module): send notFound result on dependencies.yml reques…
0977baa
…t if module doesn't exist (#110)
No branches or pull requests
and in modules.scala
So we will always have some content even if the module doesn't exist.
ex
https://www.playframework.com/modules/repo/starwars/1.5/dependencies.yml
The text was updated successfully, but these errors were encountered: