diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-12-06 23:00:58 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-12-06 23:00:58 -0500 |
commit | 7f3bf38e8db9288d92f2864be4f66b14adf80971 (patch) | |
tree | 57c5d31876ba50c1674736493f58d9ab4e59474b /doc/plugin-authorization-architecture.markdown | |
parent | 5c84996ee7140e2cff1d8e18fb9482e8a4c020a8 (diff) |
Fix typo in documentation
Diffstat (limited to 'doc/plugin-authorization-architecture.markdown')
-rw-r--r-- | doc/plugin-authorization-architecture.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/plugin-authorization-architecture.markdown b/doc/plugin-authorization-architecture.markdown index f61d05b3..24acee17 100644 --- a/doc/plugin-authorization-architecture.markdown +++ b/doc/plugin-authorization-architecture.markdown @@ -17,14 +17,14 @@ Extending Access Map -------------------- The Access List (ACL) is based on the controller class name and the method name. -The list of access are handled by the class `Kanboard\Core\Security\AccessMap`. +The list of access is handled by the class `Kanboard\Core\Security\AccessMap`. There are two access map: one for the application and another one for projects. - Application access map: `$this->applicationAccessMap` - Project access map: `$this->projectAccessMap` -Example to define a new policy from your plugin: +Examples to define a new policy from your plugin: ```php // All methods of the class MyController: |