退出帐户入境套餐? (流星)

时间:2014-03-14 03:11:24

标签: authentication meteor accounts

我正在尝试使用meteor上的帐户条目设置登录系统,但我不知道如何设置注销功能。该软件包表示包含/注销路径,但当我进入/注销时,它只是重定向到/ path。如何使用帐户输入设置注销?

1 个答案:

答案 0 :(得分:1)

这就是应该如何运作的。有关该路由,请参阅the source code:首先签署用户,然后重定向到主页:

@route 'entrySignOut',
  path: '/sign-out'
  before: ->
    Session.set('entryError', undefined)
    if AccountsEntry.settings.homeRoute
      Meteor.logout () ->
        Router.go AccountsEntry.settings.homeRoute
    @stop()