Kogulan Baskaran
42cbd233e9
Add mutli tenancy to replication
2016-11-16 17:33:55 +11:00
Loay
67e5c6ec1e
Require verification after email change
...
When the User model is configured to require email verification,
then any change of the email address should trigger re-verification.
2016-11-09 11:51:37 -05:00
Dhaval Trivedi
6e880137e4
adding check of string for case insensitive emails
2016-11-04 10:35:08 -04:00
Miroslav Bajtoš
bf5c206bd6
Fix description of updateAll response
...
Correctly describe the first non-error callback arg as an `info` object
containing a `count` property.
2016-10-12 13:04:35 +02:00
Miroslav Bajtoš
b3497c6778
Allow tokens with eternal TTL (value -1)
...
- Add a new User setting 'allowEternalTokens'
- Enhance 'AccessToken.validate' to support eternal tokens with ttl
value -1 when the user model allows it.
2016-10-12 12:30:33 +02:00
Tim van der Staaij
b8b92fbeda
Fix support for remote hooks returning a Promise
...
Fix beforeRemote/afterRemote to correctly return promises returned
by the user-provided hook callback.
2016-10-05 11:02:36 +02:00
Loay
bdeaf654fa
Validate non-email property partial update
2016-10-03 16:53:36 -04:00
gunjpan
e244153eb7
Update tests to use registry for model creation
...
Current implementation of `app.model(modelName, settings)`
works as a sugar for model creation. In LB 3.0, this is
not supported anymore. This backporting:
- keeps the sugar method for model creation for backward
compatibility
- updates test cases to use `app.registry.createModel()`
for model creation
Backport of #2401
2016-09-27 16:44:01 -04:00
Richard Pringle
f7dbc97763
Call new disable remote method from model class.
2016-09-23 11:14:51 -04:00
Loay
59eeb99803
Allow resetPassword if email is verified
2016-09-20 11:29:56 -04:00
Loay
fa310d5882
Invalidate sessions after email change
2016-09-19 14:55:23 -04:00
Miroslav Bajtoš
14b8426687
Merge pull request #2736 from strongloop/update/loopback-testing-in-2x
...
Upgrade loopback-testing to the latest ^1.4 [2.x-only]
2016-09-13 09:13:57 +02:00
Miroslav Bajtoš
3df5b2814c
Fix double-slash in confirmation URL
...
Fix the code building the URL used in the email-verification email
to prevent double-slash in the URL when e.g. restApiRoot is '/'.
Before:
http://example.com//users/confirm ?...
Now:
http://example.com/users/confirm ?...
2016-09-12 17:12:24 +02:00
Miroslav Bajtoš
c4214024be
Upgrade loopback-testing to the latest ^1.4
2016-09-12 13:21:07 +02:00
Amir Jafarian
4d6f2da578
Fix data argument for upsertWithWhere
...
* Related PR: #2727
2016-09-07 13:52:35 -04:00
Sonali Samantaray
4c013deaae
Expose upsertWithWhere
...
Backport of #2539
2016-09-07 12:41:56 -04:00
Miroslav Bajtoš
fcfdb73bdb
Fix remoting metadata for "data" arguments
...
Fix the definition of "data" argument to
{ type: 'object', model: modelName, ... }
That way strong-remoting passed the request body directly to the model
method (does not create a new model instance), but the swagger will
still provide correct schema for these arguments.
This fixes a bug where upsert in relation methods was adding default
property values to request payload.
2016-09-07 12:59:01 +02:00
Miroslav Bajtoš
381222bf7a
Rework email validation to use isemail
...
Drop hand-crafted RegExp in favour of a 3rd-party module that supports
RFC5321, RFC5322 and other relevant standards.
2016-09-06 13:00:27 +02:00
Miroslav Bajtoš
f362084770
Merge pull request #2697 from strongloop/fix/various
...
Fix app.enableAuth and test/user
2016-09-01 16:49:36 +02:00
Miroslav Bajtoš
bc10d68c54
test/user: don't attach User model twice
2016-08-31 15:29:18 +02:00
Subramanian Krishnan
6e71a52e90
Make the app instance available to connectors
2016-08-29 14:57:43 +02:00
Amir Jafarian
55eb8d72e6
Reorder PATCH Vs PUT endpoints
...
* Reorder PATCH Vs PUT endpoints for update* methods
* Backport of #2670
2016-08-26 16:21:45 -04:00
Benjamin Kroeger
c538aa764d
resolve related models from correct registry
...
Also modify setup of test servers when ACL was used, force the app
to `loadBuiltinModels` with localRegistry.
2016-08-25 10:39:44 +02:00
Miroslav Bajtoš
b221af7cf6
KeyValueModel: add API for listing keys
...
- Expose "keys()" at "GET /keys"
- Add a dummy implementation for "iterateKeys" to serve a useful error
message when the model is not attached correctly.
2016-08-18 13:34:29 +02:00
Carl Fürstenberg
ba2fe0ee05
Fix token middleware crash
...
Fix token middleware to check if `req.loopbackContext` is active.
The context is not active for example when express-session calls
setImmediate which breaks CLS.
2016-08-17 13:42:43 +02:00
Miroslav Bajtoš
378aba60ae
Merge pull request #2489 from STRML/mailAlias
...
Support 'alias' in mail transport config.
2016-08-16 16:19:45 +02:00
Amir Jafarian
e562137807
Expose `Replace*` methods
...
*Re-mapping `updateAttributes` endpoint to use
`PATCH` and `PUT`(configurable) verb
*Exposing `replaceById` and `replaceOrCreate` via
`POST` and `PUT`(configurable) verb
2016-08-15 12:17:36 -04:00
Loay
d8aa6bdf00
Add bcrypt validation
...
https://github.com/strongloop/loopback/pull/2580
2016-08-15 09:55:23 -04:00
Miroslav Bajtoš
99dc1f9541
common: add KeyValueModel
2016-08-10 15:30:15 +02:00
Miroslav Bajtoš
ca28e7ff9e
Deprecate current-context API
...
Deprecate all current-context APIs in favour of loopback-context-cls.
2016-08-10 10:58:33 +02:00
Miroslav Bajtoš
81318e603d
test: increase timeout to prevent CI failures
...
[back-port of #2591 ]
2016-08-08 16:09:08 +02:00
Miroslav Bajtoš
0eff26199c
test: fix timeout in rest.middleware.test
2016-08-05 11:33:57 +02:00
Miroslav Bajtoš
2eec008e0e
test: fix "socket hang up" error in app.test
...
Rework the test to always wait for the client request to finish before
calling the test done.
2016-08-05 10:54:42 +02:00
Miroslav Bajtoš
593fd6e042
test: increate timeout in Role test
2016-08-05 10:54:42 +02:00
Miroslav Bajtoš
fc5f16d833
test: make status test more robust
...
Rework assertions to report helpful messages on failure.
Increase the "elapsed" limit from 100ms to 300ms to support our
slow CI machines.
2016-08-05 10:54:42 +02:00
Miroslav Bajtoš
ed953a4c6f
test: fix broken Role tests
...
Rework the test suite to always report errors and correctly signal
when async tests are done.
This should prevent spurious test failures on CI servers that are
difficult to troubleshoot, because the error is reported for different
test case.
2016-08-05 10:54:42 +02:00
Miroslav Bajtoš
fea3b781a0
Update dependencies to their latest versions
2016-08-05 10:54:42 +02:00
jannyHou
7f5f8d6df5
Increase timeout
2016-08-03 11:11:09 -04:00
Candy
4a93935825
Merge pull request #2566 from strongloop/backport/fix_misconfigured-change-replication
...
Backport of #2565
2016-07-29 15:14:54 -04:00
Miroslav Bajtoš
fa8ac8d324
Backport of #2565
2016-07-29 11:39:47 -04:00
Amir Jafarian
2ab599fdd1
Avoid calling deprecated methds
...
*Avoid calling deprecated
`getHttpMethod` and `getFullPath`
2016-07-28 11:29:25 -04:00
Miroslav Bajtoš
895629632f
test: use local registry in test fixtures
...
Use local registry in test fixtures to prevent collision in globally
shared models.
Fix issues discoverd in auth implementation where the global registry
was used instead of the correct local one.
2016-07-27 15:06:32 +02:00
Loay
a8f30af49d
Fix test case error
2016-07-26 13:29:11 -04:00
Loay
619372e51e
Backport/Fix security issue 580
2016-07-25 11:06:19 -04:00
Samuel Reed
8bed218a74
Support 'alias' in mail transport config.
...
Useful if you need to set up multiple transports of the same type.
2016-07-05 10:48:24 -05:00
Loay
4480cd92ab
Fix verificationToken bug #2440
2016-06-17 11:16:06 -04:00
Benjamin Kroeger
7e051a7549
add missing unit tests for #2108
...
Subsequent token middleware tries to read `token.id`
when `enableDoublecheck: true`.
That caused a "Cannot read property `id` of `null`" error
when the first middleware didn't actually find a valid accessToken.
[back-port of #2227 ]
2016-06-13 15:30:28 +02:00
Miroslav Bajtoš
b013e66883
test: increase timeouts on CI
2016-06-01 09:26:45 +02:00
Miroslav Bajtoš
75da4c7784
Deprecate getters for express 3.x middleware
...
In LoopBack 3.0, we are removing these getters, see #2394 .
2016-05-31 18:58:10 +02:00
juehou
8fef4845f8
Resolver support return promise
2016-05-10 18:00:42 -04:00