TanmoySG / wunderDB

A micro JSON-based Data Store inspired by MongoDB.
http://wdb.tanmoysg.com/api/
Apache License 2.0
12 stars 0 forks source link

[Development] Safe Naming Convention for Entities #95

Closed TanmoySG closed 1 year ago

TanmoySG commented 1 year ago

Entity Names should have Convention and every entity should follow the naming convention. Entities should also be URL safe named.

TanmoySG commented 1 year ago

Allowed characters: alphanumeric, non-leading hyphen, underscore, period Source: appwrite

TanmoySG commented 1 year ago

Regexp for above

`[a-zA-Z0-9-_.]+.*[^-_.]$`gm