We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For instance, I have the following functions:
xml_error(Forbidden) do |err| err.send 'no-uid-conflict', 'hihi' end if resource.uids.include?(card_uid)
which will create the following result:
<D:error xmlns:D="DAV:" xmlns:C="urn:ietf:params:xml:ns:carddav"> <D:no-uid-conflict>haha/D:no-uid-conflict /D:error
Can I change the namespace of no-hid-conflict with prefix 'C'? Thanks a lot!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For instance, I have the following functions:
xml_error(Forbidden) do |err|
err.send 'no-uid-conflict', 'hihi'
end if resource.uids.include?(card_uid)
which will create the following result:
<D:error xmlns:D="DAV:" xmlns:C="urn:ietf:params:xml:ns:carddav">
<D:no-uid-conflict>haha/D:no-uid-conflict
/D:error
Can I change the namespace of no-hid-conflict with prefix 'C'? Thanks a lot!
The text was updated successfully, but these errors were encountered: