Browse Source

refactor(nextcloud): Remove safe option for mkcol

pull/520/head
jld3103 1 year ago
parent
commit
552a0ca0b9
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 22
      packages/nextcloud/lib/src/webdav/client.dart

22
packages/nextcloud/lib/src/webdav/client.dart

@ -116,23 +116,11 @@ class WebDavClient {
/// Creates a collection at [path].
///
/// See http://www.webdav.org/specs/rfc2518.html#METHOD_MKCOL for more information.
Future<HttpClientResponse> mkcol(
final String path, {
final bool safe = true,
}) async {
final expectedCodes = [
201,
if (safe) ...[
301,
405,
],
];
return _send(
'MKCOL',
_constructPath(path),
expectedCodes,
);
}
Future<HttpClientResponse> mkcol(final String path) async => _send(
'MKCOL',
_constructPath(path),
[201],
);
/// Deletes the resource at [path].
///

Loading…
Cancel
Save