Reputation: 3869
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
Reputation: 75945
You could use Accounts.config
Both Client and Server need this:
Accounts.config({
forbidClientAccountCreation: true
});
Upvotes: 6