Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript User Authentication With Express and Mongo User Registration Storing Passwords Securely

Khaled Pendleton
Khaled Pendleton
20,430 Points

Are there only pre "save" hooks?

Can these middleware methods be made for other database functions such as find or delete?

for example:

UserSchema.pre('delete', function(next) {
    // Do something before the document is found and deleted
})

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

Yes, you can find a list of available hooks here: http://mongoosejs.com/docs/middleware.html

In your case the hook is called 'remove' instead of 'delete'.