Error: invalid type'$direct-message': numbers and lowercase letters allowed only
I've got the error invalid type'$direct-message': numbers and lowercase letters allowed only in the frontend. I've got it fixed by renaming the database-name to directmessage.
yes, - is not allowed in object types. Thanks @elmarburke for bringing it up, we'll fix that
@espy we could do two things here:
- remove the dashes from the Tutorial and explain why that is
- Actually, we could allow
-as long as it is not the first character. Reason is that I want to stay compatible with CouchDB database name restrictions, but-are allowed. Maybe they haven't been back when I created it, dunno.
I'd go with the second option. Any objects to have - in CouchDB doc._ids or database names @janl @caolan @svnlto?
Maybe they haven't been back when I created it, dunno.
This hasn’t changed since the dawn of CouchDB :) The valid regex is: ^[a-z][a-z0-9_$()+/-]*$
remove the dashes from the Tutorial and explain why that is
No need to explain it, the tutorial is in a draft state anyways, changes to it need not to be explained esp. if they are as trivial.
Actually, we could allow - as long as it is not the first character. Reason is that I want to stay compatible with CouchDB database name restrictions, but - are allowed. Maybe they haven't been back when I created it, dunno.
And add another layer of complexity - no.
I'd just amend the tutorial and move on :)