diff options
author | Luiza Pagliari <lpagliari@gmail.com> | 2017-07-10 20:02:47 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-10 20:02:47 -0300 |
commit | 2b827b843da4c6f3efcd42edd0b425006150054a (patch) | |
tree | cc24ea151a297e2a4bb535a02e07516032d6321d /src/node | |
parent | f9203524a4db9de58e8d37eca424a9efbdb6ac1b (diff) | |
parent | 2508b9749ce040237ce8f89b60118ab108084baf (diff) | |
download | etherpad-lite-2b827b843da4c6f3efcd42edd0b425006150054a.zip |
Merge pull request #3215 from klausweiss/fixtypo_secman_doc
Fix a typo in SessionManager
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/db/SecurityManager.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/db/SecurityManager.js b/src/node/db/SecurityManager.js index 6fae57ff..bbd8cef4 100644 --- a/src/node/db/SecurityManager.js +++ b/src/node/db/SecurityManager.js @@ -31,7 +31,7 @@ var authLogger = log4js.getLogger("auth"); /** * This function controlls the access to a pad, it checks if the user can access a pad. * @param padID the pad the user wants to access - * @param sesssionID the session the user has (set via api) + * @param sessionCookie the session the user has (set via api) * @param token the token of the author (randomly generated at client side, used for public pads) * @param password the password the user has given to access this pad, can be null * @param callback will be called with (err, {accessStatus: grant|deny|wrongPassword|needPassword, authorID: a.xxxxxx}) |