OldHawk
11f5f2bfec
feat(users): set user status to idle when long time not login
2017-12-03 16:50:22 +08:00
OldHawk
fc3708bce4
opt(users): optimization user local sign in logic
2017-12-01 14:24:40 +08:00
OldHawk
45c0c415ee
fix(string): translate string from server when user sign in
2017-12-01 13:22:48 +08:00
OldHawk
fc0afa1672
feat(users): check account active status when user sign in
2017-11-06 15:17:10 +08:00
OldHawk
d3a7861b71
feat(about): add user rating for maker group
2017-10-20 23:17:36 +08:00
OldHawk
18f3af75cb
feat(maker): admin oper can create maker group for user now, in user manager page
2017-10-19 18:44:22 +08:00
OldHawk
c3149302a0
Merge commit '84ec1c80d283cbea8b186629e7b1de49d91cf9ba'
...
* commit '84ec1c80d283cbea8b186629e7b1de49d91cf9ba':
fix(heroku): fix invalid app.json (#1901 )
feat(deps): dependencies upgrade (#1887 )
release(0.6.0): MEAN.JS 0.6.0 (#1863 )
feat(readme): Deploy to Heroku button (#1854 )
fix(users): Spacing Issues
Abstracted OAuth routes to use req param to identify strategy & moved scope to actual strategy definition.
Save profile images to Amazon S3 (#1857 )
fix(build): Require correct dependencies for prod build (#1855 )
fix(eslint): Make `space-before-function-paren` rule consistent with other rules (#1858 )
fix(gulpfile): show error on uglify (#1860 )
feat(core): Add manifest.json (#1851 )
# Conflicts:
# CHANGELOG.md
# README.md
# modules/core/client/views/header.client.view.html
# modules/users/client/views/settings/change-profile-picture.client.view.html
# modules/users/server/controllers/users/users.profile.server.controller.js
# package.json
2017-10-13 15:43:39 +08:00
mleanos
fabccc850b
fix(users): Spacing Issues
...
Fixes spacing issues with a couple server-side user module files.
2017-09-19 14:31:36 -07:00
Douglas Logan
6377a1ec6a
Abstracted OAuth routes to use req param to identify strategy & moved scope to actual strategy definition.
2017-09-19 14:31:35 -07:00
OldHawk
674209ebf9
feat(users): populate invited_by user info when login
2017-09-13 18:29:15 +08:00
OldHawk
f052ea853e
Merge commit 'b43c80e2c097b11114f4e4f01b9718321721a89b'
...
* commit 'b43c80e2c097b11114f4e4f01b9718321721a89b':
feat(build): Update dependencies (#1847 )
fix(travis): Fix Travis failing on webdriver issues (#1845 )
fix(eslint): Inconsistent spacing before function parentheses (#1844 )
fix(mongodb): update ssl connection settings (#1809 )
Remove deprecated crypto package (#1843 )
feat(config): Mongo Seed 2.0 (#1808 )
fix(users): don't fail on missing old image on image upload (#1839 )
feat(build): Turn on mangling for uglify (#1841 )
fix(gulp): fix broken test:server:watch task (#1842 )
feat(core): Enhancement page title directive (#1686 )
feat(user): Add email support to forgot password (#1834 )
fix(mocha): update mochajs version to reduce vulnerabilities (#1830 )
refactor(menus): Refactor to the Menus client service to use functional loops/filters (#1575 )
feat(config): Mongoose 4.11 upgrade (#1818 )
# Conflicts:
# config/env/development.js
# config/lib/app.js
# modules/articles/server/models/article.server.model.js
# modules/chat/client/config/chat.client.routes.js
# modules/core/client/directives/page-title.client.directive.js
# modules/core/client/services/menu.client.service.js
# modules/users/client/config/users-admin.client.routes.js
# modules/users/client/views/password/forgot-password.client.view.html
# modules/users/server/models/user.server.model.js
# package.json
2017-08-22 13:35:29 +08:00
Michael Leanos
dc880eb5a7
feat(config): Mongoose 4.11 upgrade ( #1818 )
...
Upgrades Mongoose to 4.11.1
Updates Mongoose connection implementation to accommodate deprecated
features & connection options.
Also, updates the Gulp Mocha tasks to reflect changes to the Mongoose
implementation.
Fixes tests to get the database from the existing Mongoose singleton.
Derives from changes in https://github.com/meanjs/mean/pull/1816
Closes https://github.com/meanjs/mean/issues/1814
2017-07-27 13:19:22 -07:00
OldHawk
909b35ee60
feat(users): forbid user login when banned from server
2017-07-04 17:52:08 +08:00
OldHawk
9ea721ec29
feat(users): forbid user login when banned from server
2017-07-04 17:49:11 +08:00
OldHawk
a256d60064
feat(users): forbid user login when banned from server
2017-07-04 17:47:25 +08:00
OldHawk
7679e89a51
feat(users): log user signed_ip,leeched_ip, client_agent, last_signed
2017-05-26 10:49:17 +08:00
itelo
6a6b630292
feat(users): change username to usernameOrEmail in signin ( #1545 )
...
* feat(users): change username to usernameOrEmail in signin
* fix(users): toLowerCase at email in local strategy
2016-10-06 18:34:15 +03:00
walter
d896d07d8b
Added configuration for owasp. Synchronize client owap configs with the server configs.
...
Also added a time indicator on failed login attempts to give the user feedback on subsequent failed login attempts.
2016-09-07 19:16:11 -07:00
Michael Leanos
4906611ccc
fix(users): GitHub strategy missing email ( #1250 )
...
Fixes an issue with an empty/missing/null Email coming from GitHub's
OAuth call response.
Also, introduces the `sparse` index option on the User model's Email
field. This will ensure that we can have multiple User documents without
the Email field.
Adds a server-side User model test for the sparse index setting on the
email field.
Confirms that User documents without the email field are not indexed,
illustrating the sparse option on the schema's email field works
properly.
Added the dropdb task to the Gulp test:client & test:server tasks, to
ensure we have a clean database & that any indexes are rebuilt; this
will ensure any Schema changes (in this case the email index is rebuilt using
the sparse index option) are reflected when the database is started again.
Added a UPGRADE.md for tracking important upgrade information for our
user's to be aware of, when we introduce potentially breaking changes.
Included an explanation of the Sparse index being added, and how to apply it
to an existing MEANJS application's database.
Adds a script for dropping the `email` field's index from the User
collection.
Related #1145
2016-04-29 14:13:46 -07:00
Sébastien Combéfis
d2b2dfd606
fix(docs): Fix comments content and style
...
Changed some bad comments referencing the Articles module in other modules.
Typo fixed in xxx.client.modules.js files ("Application" => "Applicaion")
Full stop character removed at the end of line comments
2016-01-17 11:46:11 +01:00
Ilan Biala
0323696eaf
Format code according to ESLint rules
2015-10-16 20:52:31 -04:00
almegdad
aafa5e69cf
Force Lowercase & Remove Sensitive Data
...
* add directive to force username & email lowercase
* remove sensitive data in password reset
* 2 space indentation in reset & forgot password views
2015-09-01 21:09:20 +03:00
Ryan Hutchison
27d2818834
Closes #202 - if user does not authorize email scope, email will not be mapped. Username will be generated from first initial of first name and last name.
...
.jshint latedef set to nofunc.
2015-08-23 00:32:36 -04:00
Ryan Hutchison
ef3a3f9548
formatting reboot (space-2 and consistency)
...
JSCS fixes
update editorconfig
2015-07-31 10:04:02 -04:00
Cody B. Daig
7605956c99
displayName undefined
2015-07-23 17:00:22 -07:00
trainerbill
a98a84fd20
Fix merge conflicts
2015-07-14 15:46:23 -05:00
Liran Tal
d5b22e35c4
addressing missing newlines and node 0.12 version for travis-ci
2015-07-05 01:12:54 +03:00
Andrew Throener
8694b7e976
PayPal Authentication
2015-07-02 07:44:58 -05:00
Liran Tal
67e96a4f22
0.4.0 branch merged into master
2015-07-02 12:08:09 +03:00
Pedro Rodrigues
e11ffda6e5
Add some abstraction to local strategy login error
2015-05-28 16:56:49 +01:00
Pedro Rodrigues
b2d76b82e5
Remove more unused requires
2015-04-23 17:51:58 +01:00
Christian Berendt
e027f4025b
Add missing newline at the end of text files
...
On Unix it is common to have a newline at the end of text files.
2015-02-16 21:39:55 +01:00
Igor Freire
12766c1f3e
Adjust profile image URLs on Fb and Twitter strategies
...
For Fb, use the Graph API. For twitter, use the 'bigger' profile image. Larger profile images (like the one provided by Google) could provide more flexibility.
2015-02-06 14:20:58 -03:00
Igor Freire
9929f1b5f1
Remove username from facebook strategy
...
Username is now deprecated on Facebook API 2.0
2015-01-30 10:33:11 -03:00
Amos Haviv
ab81d61bd3
New 0.4 version
2014-11-10 23:12:33 +02:00