Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'developer_manual')
-rw-r--r--developer_manual/basics/logging.rst4
-rw-r--r--developer_manual/basics/setting.rst2
-rw-r--r--developer_manual/getting_started/devenv.rst4
3 files changed, 7 insertions, 3 deletions
diff --git a/developer_manual/basics/logging.rst b/developer_manual/basics/logging.rst
index 490581cb1..8dac7fbde 100644
--- a/developer_manual/basics/logging.rst
+++ b/developer_manual/basics/logging.rst
@@ -47,9 +47,11 @@ Admin audit logging
If you want to log things less for system administration but for compliance reasons, e.g. who accessed which file,
who changed the password of an item or made it public, the
-`admin audit log <https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/logging_configuration.html#admin-audit-log>`_
+`admin audit log <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/logging_configuration.html#admin-audit-log>`_
is the correct place.
+.. TODO ON RELEASE: Update version number above on release
+
You can easily add a log by simply emitting an ``OCP\Log\Audit\CriticalActionPerformedEvent`` event:
.. code-block:: php
diff --git a/developer_manual/basics/setting.rst b/developer_manual/basics/setting.rst
index 87de14ef3..1d9fd539d 100644
--- a/developer_manual/basics/setting.rst
+++ b/developer_manual/basics/setting.rst
@@ -115,6 +115,8 @@ This is a feature that needs to be enabled for each admin setting class.
To do so, the setting class needs to implement `IDelegatedSettings` instead of `ISettings`
and implement two additional methods.
+.. TODO ON RELEASE: Update version number above on release
+
.. code-block:: php
<?php
diff --git a/developer_manual/getting_started/devenv.rst b/developer_manual/getting_started/devenv.rst
index 9f96d64f9..700b7102b 100644
--- a/developer_manual/getting_started/devenv.rst
+++ b/developer_manual/getting_started/devenv.rst
@@ -11,7 +11,7 @@ Please follow the steps on this page to set up your development environment.
Set up Web server and database
------------------------------
-First `set up your Web server and database <https://docs.nextcloud.com/server/stable/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
+First `set up your Web server and database <https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
.. TODO ON RELEASE: Update version number above on release
@@ -20,7 +20,7 @@ Get the source
There are two ways to obtain Nextcloud sources:
-* Using the `stable version <https://docs.nextcloud.com/server/stable/admin_manual/installation/index.html>`_
+* Using the `stable version <https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html>`_
* Using the development version from `GitHub`_ which will be explained below.
.. TODO ON RELEASE: Update version number above on release