Hello,
as described in the title, is there an option to disable the Upload?
One of my users accidentally uploaded an unrelated file because he dragged it over his screen and released it on the confluence page.
He did not realize it until another colleague asked him, what that is.
This could be a security risk, if he uploads a confidential file to a public page.
Kind regards
Hi @[deleted],
Pls try searching for the keyword in the system plug-in and deactivate it
Hi @Ollie Guan,
but that would disable the whole functionality wouldn't it?
I just want to deactivate it during viewing, it should still be possible in Edit Mode.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @[deleted],
you can disable "Drag and Drop Actions" only
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I want also to disable Drag and drop only in view mode. But it seems that disable "View Content Client" does not work on my place. I can still add a file to any page. Disable "Drag and Drop Actions" or the whole plugin is not really an option for me, because we need Drag and Drop features in edit mode.
Has anyone a idea why disable "View Content Client" doesn't work?
br
John
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I could not deactivate this module using the UI, I had to use the API.
This was the request that did the trick for me:
CONFLUENCE_BASE_URL=https://confluence.example.com
ADMIN_USRNAME=confluence-admin@example.com
ADMIN_PWD=password
curl --user $ADMIN_USRNAME:$ADMIN_PWD --location --request PUT \
${CONFLUENCE_BASE_URL}'/rest/plugins/1.0/com.atlassian.confluence.plugins.drag-and-drop-key/modules/drag-and-drop-for-view-content-key' \
--header 'Content-Type: application/vnd.atl.plugins.plugin.module+json' \
--data-raw '{
"enabled": false
}'
I took the request from here: https://confluence.atlassian.com/confkb/cannot-enable-or-disable-bundled-system-apps-or-modules-1035241968.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
curl --user "username:pwrd" --location --request PUT 'https://confluence.workplace.com/rest/plugins/1.0/com.atlassian.confluence.plugins.drag-and-drop-key/modules/drag-and-drop-for-view-content-key' --header 'Content-Type: application/vnd.atl.plugins.plugin.module+json' --data-raw '{ "enabled": false }'
The above answer was malformed (bad braces, quotes)
Maybe my example will help others :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Where could I access the page where to manage the plugins? I cannot find it accessing settings from Confluence sidebar.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.