get rid of @Stuff and use a proper explanation

This commit is contained in:
Bernhard Posselt
2015-01-10 11:22:59 +01:00
parent 1c4e6e47b9
commit 79cac7ef80

View File

@@ -77,7 +77,7 @@ On the server side we need to register a callback that is executed once the requ
This route calls the controller **OCA\\OwnNotes\\PageController->index()** method which is defined in **ownnotes/controller/pagecontroller.php**. The controller returns a :doc:`template <templates>`, in this case **ownnotes/templates/main.php**:
.. note:: the @Stuff turns off security checks, see :doc:`controllers`
.. note:: @NoAdminRequired and @NoCSRFRequired in the comments above the method turn off security checks, see :doc:`controllers`
.. code-block:: php