UNPKG

@nephele/authenticator-none

Version:

Unrestricted authenticator for the Nephele WebDAV server.

10 lines 286 B
import User from './User.js'; export default class Authenticator { async authenticate(_request, _response) { return new User({ username: 'nobody' }); } async cleanAuthentication(_request, _response) { return; } } //# sourceMappingURL=Authenticator.js.map