meteor logginbutons如何禁用注册

时间:2014-06-12 06:58:11

标签: meteor

我在我的应用程序中使用Meteor的logginButtons。

我想删除注册功能。

我没有可以编辑的配置吗?

我可以调整css,但它不是很干净......

1 个答案:

答案 0 :(得分:6)

您可以使用Accounts.config

客户端和服务器都需要这个:

Accounts.config({
    forbidClientAccountCreation: true
});