├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── package.json ├── public ├── css │ └── screen.css └── views │ ├── 404.html │ ├── dashboard │ └── dashboard.html │ ├── forgot-password.html │ ├── helpers │ ├── is.js │ └── isAdmin.js │ ├── index.html │ ├── layout │ └── default.html │ ├── login.html │ ├── partials │ └── user │ │ ├── profile-change-password.html │ │ ├── profile-side-menu.html │ │ └── profile.html │ ├── reset-password.html │ ├── signup.html │ └── user │ ├── change-password.html │ └── profile.html ├── server.js ├── server ├── api │ └── users.js ├── authentication │ └── index.js ├── base │ ├── handler.js │ ├── index.js │ └── routes.js ├── config │ ├── database.js │ ├── plugins.js │ └── settings.js ├── email-templates │ └── reset-password.html ├── models │ ├── index.js │ └── user.js ├── user-login-signup │ ├── handler.js │ ├── index.js │ └── routes.js ├── user-profile │ ├── handler.js │ ├── index.js │ └── routes.js └── utils │ └── thinky.js └── test └── user.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/Vagrantfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/package.json -------------------------------------------------------------------------------- /public/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/css/screen.css -------------------------------------------------------------------------------- /public/views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/404.html -------------------------------------------------------------------------------- /public/views/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/dashboard/dashboard.html -------------------------------------------------------------------------------- /public/views/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/forgot-password.html -------------------------------------------------------------------------------- /public/views/helpers/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/helpers/is.js -------------------------------------------------------------------------------- /public/views/helpers/isAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/helpers/isAdmin.js -------------------------------------------------------------------------------- /public/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/index.html -------------------------------------------------------------------------------- /public/views/layout/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/layout/default.html -------------------------------------------------------------------------------- /public/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/login.html -------------------------------------------------------------------------------- /public/views/partials/user/profile-change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/partials/user/profile-change-password.html -------------------------------------------------------------------------------- /public/views/partials/user/profile-side-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/partials/user/profile-side-menu.html -------------------------------------------------------------------------------- /public/views/partials/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/partials/user/profile.html -------------------------------------------------------------------------------- /public/views/reset-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/reset-password.html -------------------------------------------------------------------------------- /public/views/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/signup.html -------------------------------------------------------------------------------- /public/views/user/change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/user/change-password.html -------------------------------------------------------------------------------- /public/views/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/public/views/user/profile.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server.js -------------------------------------------------------------------------------- /server/api/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/api/users.js -------------------------------------------------------------------------------- /server/authentication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/authentication/index.js -------------------------------------------------------------------------------- /server/base/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/base/handler.js -------------------------------------------------------------------------------- /server/base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/base/index.js -------------------------------------------------------------------------------- /server/base/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/base/routes.js -------------------------------------------------------------------------------- /server/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/config/database.js -------------------------------------------------------------------------------- /server/config/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/config/plugins.js -------------------------------------------------------------------------------- /server/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/config/settings.js -------------------------------------------------------------------------------- /server/email-templates/reset-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/email-templates/reset-password.html -------------------------------------------------------------------------------- /server/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/models/index.js -------------------------------------------------------------------------------- /server/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/models/user.js -------------------------------------------------------------------------------- /server/user-login-signup/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/user-login-signup/handler.js -------------------------------------------------------------------------------- /server/user-login-signup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/user-login-signup/index.js -------------------------------------------------------------------------------- /server/user-login-signup/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/user-login-signup/routes.js -------------------------------------------------------------------------------- /server/user-profile/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/user-profile/handler.js -------------------------------------------------------------------------------- /server/user-profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/user-profile/index.js -------------------------------------------------------------------------------- /server/user-profile/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/user-profile/routes.js -------------------------------------------------------------------------------- /server/utils/thinky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/server/utils/thinky.js -------------------------------------------------------------------------------- /test/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurestudio/hapi-rethinkdb-dash/HEAD/test/user.js --------------------------------------------------------------------------------