├── .bowerrc ├── .gitignore ├── Procfile ├── Procfile.dev ├── README.md ├── app ├── actions │ ├── FindUserById.js │ ├── authenticateUser.js │ ├── confirmEmail.js │ ├── findAllUsers.js │ ├── findUserByEmail.js │ ├── registerUser.js │ ├── resetPassword.js │ ├── sendEmailConfirmation.js │ ├── sendPasswordResetEmail.js │ └── setUserRole.js ├── assets │ ├── images │ │ ├── logo.svg │ │ └── node-logo.png │ ├── javascript │ │ ├── actions │ │ │ ├── notification.js │ │ │ └── session.js │ │ ├── client.jsx │ │ ├── constants │ │ │ ├── notification.js │ │ │ └── session.js │ │ ├── dispatcher │ │ │ └── app-dispatcher.js │ │ ├── global.js │ │ ├── mixins │ │ │ ├── ga.jsx │ │ │ └── validation-message.jsx │ │ ├── server.jsx │ │ ├── stores │ │ │ ├── notification.js │ │ │ └── session.js │ │ ├── view_models │ │ │ ├── forgot-password.js │ │ │ ├── password-reset.js │ │ │ ├── session.js │ │ │ └── signup.js │ │ └── views │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── account │ │ │ ├── forgot.jsx │ │ │ ├── login.jsx │ │ │ ├── reset.jsx │ │ │ └── signup.jsx │ │ │ ├── home │ │ │ └── index.jsx │ │ │ ├── layouts │ │ │ ├── content │ │ │ │ └── main.jsx │ │ │ └── page │ │ │ │ └── default.template │ │ │ └── shared │ │ │ ├── csrf.jsx │ │ │ ├── flash.jsx │ │ │ ├── footer.jsx │ │ │ └── header.jsx │ └── stylesheets │ │ ├── application.scss │ │ └── themes │ │ └── modern.scss ├── controllers │ ├── email.js │ ├── home.js │ ├── session.js │ └── users.js └── models │ ├── EmailConfirmationToken.js │ ├── ErrorMessages.js │ ├── PasswordResetToken.js │ ├── Roles.js │ └── User.js ├── bin ├── kue-web ├── kue-worker └── nuts ├── bower.json ├── config ├── environments │ ├── development.js │ ├── index.js │ ├── production.js │ ├── staging.js │ └── test.js ├── initializers │ ├── authorization.js │ ├── backbone.js │ ├── bugsnag.js │ ├── common-context.js │ ├── csrf.js │ ├── custom-errors.js │ ├── eyes.js │ ├── http-signature-configuration.js │ ├── logging.js │ ├── promise.js │ ├── session.js │ └── views.js ├── routes.js ├── settings.yml └── webpack.js ├── lib ├── crypto.js ├── jobs │ ├── email.js │ └── queue.js ├── mail │ ├── index.js │ └── templates │ │ ├── confirm_email │ │ ├── html.template │ │ ├── subject.template │ │ └── text.template │ │ └── reset_password │ │ ├── html.template │ │ ├── subject.template │ │ └── text.template ├── nuts │ ├── db.js │ ├── index.js │ └── initializers.js ├── utilities.js └── webpack │ ├── style-collector.js │ └── style-collector.loader.js ├── npm-shrinkwrap.json ├── package.json └── test ├── actions ├── authentication.js ├── confirmEmail.js ├── sendEmailConfirmation.js └── setUserRole.js ├── lib ├── crypto.js └── mail │ └── index.js ├── mocha.opts ├── models ├── EmailConfirmationToken.js └── PasswordResetToken.js └── test-helper.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/assets/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ./nuts s 2 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/FindUserById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/FindUserById.js -------------------------------------------------------------------------------- /app/actions/authenticateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/authenticateUser.js -------------------------------------------------------------------------------- /app/actions/confirmEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/confirmEmail.js -------------------------------------------------------------------------------- /app/actions/findAllUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/findAllUsers.js -------------------------------------------------------------------------------- /app/actions/findUserByEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/findUserByEmail.js -------------------------------------------------------------------------------- /app/actions/registerUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/registerUser.js -------------------------------------------------------------------------------- /app/actions/resetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/resetPassword.js -------------------------------------------------------------------------------- /app/actions/sendEmailConfirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/sendEmailConfirmation.js -------------------------------------------------------------------------------- /app/actions/sendPasswordResetEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/sendPasswordResetEmail.js -------------------------------------------------------------------------------- /app/actions/setUserRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/actions/setUserRole.js -------------------------------------------------------------------------------- /app/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/images/logo.svg -------------------------------------------------------------------------------- /app/assets/images/node-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/images/node-logo.png -------------------------------------------------------------------------------- /app/assets/javascript/actions/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/actions/notification.js -------------------------------------------------------------------------------- /app/assets/javascript/actions/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/actions/session.js -------------------------------------------------------------------------------- /app/assets/javascript/client.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/client.jsx -------------------------------------------------------------------------------- /app/assets/javascript/constants/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/constants/notification.js -------------------------------------------------------------------------------- /app/assets/javascript/constants/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/constants/session.js -------------------------------------------------------------------------------- /app/assets/javascript/dispatcher/app-dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/dispatcher/app-dispatcher.js -------------------------------------------------------------------------------- /app/assets/javascript/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/global.js -------------------------------------------------------------------------------- /app/assets/javascript/mixins/ga.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/mixins/ga.jsx -------------------------------------------------------------------------------- /app/assets/javascript/mixins/validation-message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/mixins/validation-message.jsx -------------------------------------------------------------------------------- /app/assets/javascript/server.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/server.jsx -------------------------------------------------------------------------------- /app/assets/javascript/stores/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/stores/notification.js -------------------------------------------------------------------------------- /app/assets/javascript/stores/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/stores/session.js -------------------------------------------------------------------------------- /app/assets/javascript/view_models/forgot-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/view_models/forgot-password.js -------------------------------------------------------------------------------- /app/assets/javascript/view_models/password-reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/view_models/password-reset.js -------------------------------------------------------------------------------- /app/assets/javascript/view_models/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/view_models/session.js -------------------------------------------------------------------------------- /app/assets/javascript/view_models/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/view_models/signup.js -------------------------------------------------------------------------------- /app/assets/javascript/views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/404.html -------------------------------------------------------------------------------- /app/assets/javascript/views/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/500.html -------------------------------------------------------------------------------- /app/assets/javascript/views/account/forgot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/account/forgot.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/account/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/account/login.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/account/reset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/account/reset.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/account/signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/account/signup.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/home/index.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/layouts/content/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/layouts/content/main.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/layouts/page/default.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/layouts/page/default.template -------------------------------------------------------------------------------- /app/assets/javascript/views/shared/csrf.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/shared/csrf.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/shared/flash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/shared/flash.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/shared/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/shared/footer.jsx -------------------------------------------------------------------------------- /app/assets/javascript/views/shared/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/javascript/views/shared/header.jsx -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/themes/modern.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/assets/stylesheets/themes/modern.scss -------------------------------------------------------------------------------- /app/controllers/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/controllers/email.js -------------------------------------------------------------------------------- /app/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/controllers/home.js -------------------------------------------------------------------------------- /app/controllers/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/controllers/session.js -------------------------------------------------------------------------------- /app/controllers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/controllers/users.js -------------------------------------------------------------------------------- /app/models/EmailConfirmationToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/models/EmailConfirmationToken.js -------------------------------------------------------------------------------- /app/models/ErrorMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/models/ErrorMessages.js -------------------------------------------------------------------------------- /app/models/PasswordResetToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/models/PasswordResetToken.js -------------------------------------------------------------------------------- /app/models/Roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/models/Roles.js -------------------------------------------------------------------------------- /app/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/app/models/User.js -------------------------------------------------------------------------------- /bin/kue-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/bin/kue-web -------------------------------------------------------------------------------- /bin/kue-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/bin/kue-worker -------------------------------------------------------------------------------- /bin/nuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/bin/nuts -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/bower.json -------------------------------------------------------------------------------- /config/environments/development.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/environments/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | 3 | require('./' + this.environment); 4 | 5 | }; 6 | -------------------------------------------------------------------------------- /config/environments/production.js: -------------------------------------------------------------------------------- 1 | Nuts.server.log('info', 'Loaded the production environment') 2 | -------------------------------------------------------------------------------- /config/environments/staging.js: -------------------------------------------------------------------------------- 1 | Nuts.server.log('info', 'Loaded the staging environment') 2 | -------------------------------------------------------------------------------- /config/environments/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/initializers/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/authorization.js -------------------------------------------------------------------------------- /config/initializers/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/backbone.js -------------------------------------------------------------------------------- /config/initializers/bugsnag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/bugsnag.js -------------------------------------------------------------------------------- /config/initializers/common-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/common-context.js -------------------------------------------------------------------------------- /config/initializers/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/csrf.js -------------------------------------------------------------------------------- /config/initializers/custom-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/custom-errors.js -------------------------------------------------------------------------------- /config/initializers/eyes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/eyes.js -------------------------------------------------------------------------------- /config/initializers/http-signature-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/http-signature-configuration.js -------------------------------------------------------------------------------- /config/initializers/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/logging.js -------------------------------------------------------------------------------- /config/initializers/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/promise.js -------------------------------------------------------------------------------- /config/initializers/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/session.js -------------------------------------------------------------------------------- /config/initializers/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/initializers/views.js -------------------------------------------------------------------------------- /config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/routes.js -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/config/webpack.js -------------------------------------------------------------------------------- /lib/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/crypto.js -------------------------------------------------------------------------------- /lib/jobs/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/jobs/email.js -------------------------------------------------------------------------------- /lib/jobs/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/jobs/queue.js -------------------------------------------------------------------------------- /lib/mail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/mail/index.js -------------------------------------------------------------------------------- /lib/mail/templates/confirm_email/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/mail/templates/confirm_email/html.template -------------------------------------------------------------------------------- /lib/mail/templates/confirm_email/subject.template: -------------------------------------------------------------------------------- 1 | Confirm your <%= Nuts.settings.app_name %> account -------------------------------------------------------------------------------- /lib/mail/templates/confirm_email/text.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/mail/templates/confirm_email/text.template -------------------------------------------------------------------------------- /lib/mail/templates/reset_password/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/mail/templates/reset_password/html.template -------------------------------------------------------------------------------- /lib/mail/templates/reset_password/subject.template: -------------------------------------------------------------------------------- 1 | Password reset requested 2 | -------------------------------------------------------------------------------- /lib/mail/templates/reset_password/text.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/mail/templates/reset_password/text.template -------------------------------------------------------------------------------- /lib/nuts/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/nuts/db.js -------------------------------------------------------------------------------- /lib/nuts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/nuts/index.js -------------------------------------------------------------------------------- /lib/nuts/initializers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/nuts/initializers.js -------------------------------------------------------------------------------- /lib/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/utilities.js -------------------------------------------------------------------------------- /lib/webpack/style-collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/webpack/style-collector.js -------------------------------------------------------------------------------- /lib/webpack/style-collector.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/lib/webpack/style-collector.loader.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/package.json -------------------------------------------------------------------------------- /test/actions/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/actions/authentication.js -------------------------------------------------------------------------------- /test/actions/confirmEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/actions/confirmEmail.js -------------------------------------------------------------------------------- /test/actions/sendEmailConfirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/actions/sendEmailConfirmation.js -------------------------------------------------------------------------------- /test/actions/setUserRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/actions/setUserRole.js -------------------------------------------------------------------------------- /test/lib/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/lib/crypto.js -------------------------------------------------------------------------------- /test/lib/mail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/lib/mail/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter List 2 | --recursive 3 | -------------------------------------------------------------------------------- /test/models/EmailConfirmationToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/models/EmailConfirmationToken.js -------------------------------------------------------------------------------- /test/models/PasswordResetToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/models/PasswordResetToken.js -------------------------------------------------------------------------------- /test/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahlmartin/nuts/HEAD/test/test-helper.js --------------------------------------------------------------------------------