diff --git a/python/server/auto_generated/qgsserversettings.sip.in b/python/server/auto_generated/qgsserversettings.sip.in index ccd5f682023..1f475ef34f6 100644 --- a/python/server/auto_generated/qgsserversettings.sip.in +++ b/python/server/auto_generated/qgsserversettings.sip.in @@ -157,16 +157,18 @@ Returns the server-wide max width of a WMS GetMap request. The lower one of this QString projectsDirectories() const; %Docstring -Returns the directory used by the landing page service to find .qgs and -.qgz projects. +Returns the directories used by the landing page service to find .qgs +and .qgz projects. Multiple directories can be specified by separating +them with '||'. .. versionadded:: 3.16 %End QString projectsPgConnections() const; %Docstring -Returns the PostgreSQL connection string used by the landing page -service to find projects. +Returns the PostgreSQL connection strings used by the landing page +service to find projects. Multiple connections can be specified by +separating them with '||'. .. versionadded:: 3.16 %End diff --git a/src/server/qgsserversettings.h b/src/server/qgsserversettings.h index b616aa85087..f5381c7f9ba 100644 --- a/src/server/qgsserversettings.h +++ b/src/server/qgsserversettings.h @@ -208,15 +208,17 @@ class SERVER_EXPORT QgsServerSettings int wmsMaxWidth() const; /** - * Returns the directory used by the landing page service to find .qgs and - * .qgz projects. + * Returns the directories used by the landing page service to find .qgs + * and .qgz projects. Multiple directories can be specified by separating + * them with '||'. * \since QGIS 3.16 */ QString projectsDirectories() const; /** - * Returns the PostgreSQL connection string used by the landing page - * service to find projects. + * Returns the PostgreSQL connection strings used by the landing page + * service to find projects. Multiple connections can be specified by + * separating them with '||'. * \since QGIS 3.16 */ QString projectsPgConnections() const;