ndemoreau
ndemoreau

Reputation: 3869

meteor logginbutons how to disable sign-up

I'm using Meteor's logginButtons in my app.

I would like to remove the ability to sign-up.

Isn't there a config I could edit to do that?

I could tweak the css but it is not very clean...

Upvotes: 1

Views: 956

Answers (1)

Tarang
Tarang

Reputation: 75945

You could use Accounts.config

Both Client and Server need this:

Accounts.config({
    forbidClientAccountCreation: true
});

Upvotes: 6

Related Questions