Skip to content

423 Locked

WebDAV error indicating the resource you are trying to edit is currently locked by someone else.

WebDAV specific. Use this if someone tries to edit a document that is currently locked by another collaborator.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('Locked', 423);
});