From 9a3e66efac3bb38558d50cc21e282cfef4291efc Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Mon, 11 Apr 2016 03:48:33 +0200 Subject: [PATCH] Step 18.50: Add Password to Auth --- imports/ui/components/auth/auth.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/imports/ui/components/auth/auth.js b/imports/ui/components/auth/auth.js index 871e2fd08..a87dd5e45 100644 --- a/imports/ui/components/auth/auth.js +++ b/imports/ui/components/auth/auth.js @@ -8,6 +8,7 @@ import template from './auth.html'; import { name as DisplayNameFilter } from '../../filters/displayNameFilter'; import { name as Login } from '../login/login'; import { name as Register } from '../register/register'; +import { name as Password } from '../password/password'; const name = 'auth'; @@ -37,7 +38,8 @@ export default angular.module(name, [ angularMeteor, DisplayNameFilter, Login, - Register + Register, + Password ]).component(name, { template, controllerAs: name,