mirror of https://github.com/status-im/codimd.git
Fix typos for `allowAnonymousEdits`
Looks like we lost some variables during the refactoring of the configs to camel case. This should fix it. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
bdb8631a7b
commit
2492cf2cdf
|
@ -53,7 +53,7 @@ if (config.ldap.tlsca) {
|
|||
|
||||
// Permission
|
||||
config.permission = Permission
|
||||
if (!config.allowAnonymous && !config.allowAnonymousedits) {
|
||||
if (!config.allowAnonymous && !config.allowAnonymousEdits) {
|
||||
delete config.permission.freely
|
||||
}
|
||||
if (!(config.defaultPermission in config.permission)) {
|
||||
|
|
|
@ -788,7 +788,7 @@ function connection (socket) {
|
|||
var note = notes[noteId]
|
||||
// Only owner can change permission
|
||||
if (note.owner && note.owner === socket.request.user.id) {
|
||||
if (permission === 'freely' && !config.allowAnonymous && !config.allowAnonymousedits) return
|
||||
if (permission === 'freely' && !config.allowAnonymous && !config.allowAnonymousEdits) return
|
||||
note.permission = permission
|
||||
models.Note.update({
|
||||
permission: permission
|
||||
|
|
|
@ -59,7 +59,7 @@ function showIndex (req, res, next) {
|
|||
url: config.serverURL,
|
||||
useCDN: config.useCDN,
|
||||
allowAnonymous: config.allowAnonymous,
|
||||
allowAnonymousEdits: config.allowAnonymousedits,
|
||||
allowAnonymousEdits: config.allowAnonymousEdits,
|
||||
facebook: config.isFacebookEnable,
|
||||
twitter: config.isTwitterEnable,
|
||||
github: config.isGitHubEnable,
|
||||
|
@ -94,7 +94,7 @@ function responseHackMD (res, note) {
|
|||
title: title,
|
||||
useCDN: config.useCDN,
|
||||
allowAnonymous: config.allowAnonymous,
|
||||
allowAnonymousEdits: config.allowAnonymousedits,
|
||||
allowAnonymousEdits: config.allowAnonymousEdits,
|
||||
facebook: config.isFacebookEnable,
|
||||
twitter: config.isTwitterEnable,
|
||||
github: config.isGitHubEnable,
|
||||
|
|
Loading…
Reference in New Issue