You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
To get the authentication options, some hooks call hook.app.get('authentication') and others call hook.app.get('auth'). e.g, options = Object.assign({}, defaults, hook.app.get('authentication'), options);
in following hooks:
has-role-or-restrict.js,
associate-current-user.js,
restrict-to-owner.js,
query-with-current-user.js
and options = Object.assign({}, defaults, hook.app.get('auth'), options);
in following hooks:
restrict-to-roles.js,
owner-or-restrict-changes.js
But in feathers-authentication plugin, it just set('auth', options). Is this(using key 'authentication') a bug?
The text was updated successfully, but these errors were encountered:
To get the authentication options, some hooks call hook.app.get('authentication') and others call hook.app.get('auth'). e.g,
options = Object.assign({}, defaults, hook.app.get('authentication'), options);
in following hooks:
has-role-or-restrict.js,
associate-current-user.js,
restrict-to-owner.js,
query-with-current-user.js
and
options = Object.assign({}, defaults, hook.app.get('auth'), options);
in following hooks:
restrict-to-roles.js,
owner-or-restrict-changes.js
But in feathers-authentication plugin, it just set('auth', options). Is this(using key 'authentication') a bug?
The text was updated successfully, but these errors were encountered: