How to remove pads in etherpad-lite

Is it possible? How? I can create or edit created ones. I use my own server. I would like an administrator, or at least delete some gaskets.

+7
source share
3 answers

if you are still waiting for a response: via the provided api. you need the api key (e.g. / var / etherpad-lite / APIKEY.txt) and the identifier of the pad you want to delete (e.g. mypad). then you send a simple HTTP request to

http://yourserver.org:9001/api/1/deletePad?apikey=yourkey&padID=mypad

+12
source

or if you want to have an open source solution: https://github.com/Visono/padlister hope it works, this is my first open source project;)

0
source

The ep_adminpads plugin can be used to display and remove pads - it is installed on npm: see npmjs or github or even from the /admin route inside the etherpad installation.

0
source

All Articles