Hi all,
Is there any way to run grantRolesToUsers like query through mongodb ruby driver?
This appears to be a cross post from ruby - Grant roles to mongo users via rails - Stack Overflow which has already been answered (pasted below):
The Ruby mechanism for running arbitrary commands is documented here.
You would then do something like:
client.database.command(grantRolesToUser: username, roles: ['foo'])
To get the client instance, use Foo.collection.client where Foo is a Mongoid model class.