Can I have an Accounts Collection while using accounts-base

I’m using accounts-base and I want to create another collection which I would call ‘Accounts’ to manage elaborate user information. I’m thinking there would be coincidence when I have:

import { Accounts } from 'meteor/accounts-base';

and this:

import { Accounts } from '../collections/accounts.js';

I would want to be able to distinguish between the two.

import { Accounts as SomeOtherName } from ...

and use SomeOtherName in your code.

do you mean for the ‘accounts-base’?

Whichever you want :slight_smile:

1 Like