我下载了名为MeteorAdmin的Meteor Starter项目。该项目使用meteor-useraccounts
包
我希望阻止"Don't have an account? Register"
句子出现在默认的SignIn视图中。
所以在accounts.coffee
我改变了这个:
AccountsTemplates.configureRoute 'signIn'
AccountsTemplates.configureRoute 'signUp'
为:
AccountsTemplates.configureRoute 'signIn' ,
hideSignUpLink: true
AccountsTemplates.configureRoute 'signUp'
这不起作用!虽然meteor-useraccounts
documentation说它应该有效,但是这个问题
答案 0 :(得分:0)
我想你必须把它放在主配置中,如下所示:
AccountsTemplates.configure({
hideSignUpLink: true
});