talha-asad / mongoose-url-slugs

Create URL compatiable slugs on mongoose models, ensuring uniqueness.
MIT License
40 stars 22 forks source link

Add an option to excluse some reserved words #39

Open svengau opened 6 years ago

svengau commented 6 years ago

Hi,

it would be nice to have an option to exclude some words from the slug generation. For example, with contact, blog, help:

testSchema.plugin(URLSlugs('username', exclude: ["contact", "blog", "help"]));

If you like it, I will try to propose a pull request for that.

talha-asad commented 6 years ago

Yes, sure looks like a good idea.

svengau commented 6 years ago

Here is the PR: https://github.com/talha-asad/mongoose-url-slugs/pull/40 thanks