Skip to content

Commit

Permalink
Takes description from parameter
Browse files Browse the repository at this point in the history
makes this method reusable and not only for field filters
  • Loading branch information
elpaso committed Nov 5, 2019
1 parent 8931d72 commit 459c105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgsserverquerystringparameter.cpp
Expand Up @@ -126,7 +126,7 @@ json QgsServerQueryStringParameter::data() const
return
{
{ "name", nameString },
{ "description", "Filter the collection by '" + nameString + "'" },
{ "description", description().toStdString() },
{ "required", mRequired },
{ "in", "query"},
{ "style", "form"},
Expand Down

0 comments on commit 459c105

Please sign in to comment.