Can you get meeting-level permissions in MongoDB?

Can you get meeting-level permissions in MongoDB? Like table level permissions in an SQL database?

This is the only thing I can find on it. It looks like an old ticket.

https://jira.mongodb.org/browse/SERVER-1105

+7
source share
2 answers

No, not yet, MongoDB access control is currently only available at the database level. Depending on your requirements, there may be an option to implement a security model in the application code that controls access to the collection level.

+3
source

For those who come to this late (like me), MongoDB now has collection-level authorization support.

See: http://docs.mongodb.org/manual/core/collection-level-access-control/

+4
source

All Articles