mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-08 19:22:02 +01:00
5 lines
223 B
JavaScript
5 lines
223 B
JavaScript
![]() |
exports.expressCreateServer = function (hook_name, args, cb) {
|
||
|
args.app.get('/admin', function(req, res) {
|
||
|
res.send( 501, 'Not Implemented, yet. Meanwhile go to <a href="/admin/plugins">/admin/plugins</a>' );
|
||
|
});
|
||
|
};
|