我想将keystone连接到另一个要求mongoose架构的应用程序。
如何从模型梯形图中获取mongoose模式? (或者我如何从集合中生成mongoose模式)
答案 0 :(得分:0)
我刚刚发现你可以像这样使用Keystone列表的模式:
public function logout() {
return $this->redirect($this->Auth->logout());
// $this->redirect('http://auth0.domain?returnTo=http://example.com/');
}
public function beforeFilter(Event $event) {
parent::beforeFilter($event);
$this->Auth->allow('logout'); // Appears to do nothing
}