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 Sep 27, 2021. It is now read-only.
Today I was asked to help someone in need of authentication with Ad (Active Directory) and I indicated the AdonisJS documentation (Extending Providers) that shows how to do this and I came across what I considered an error:
In the example it shows that we should use hooks.after, but I understand that hooks.before should be used, because when the manager is called to get his extensions it is empty ([]). Once the extensions are called after the Providers are registered.
In the example it is shown how to extend the Adonis/Src/Session provider, but this provider does not exist and to extend an authentication provider is slightly different, as the example below.
I would like to extend on this problem with a more concrete example with core code
In the documentation (Extending providers) it sohuld be noted that 'Adonis/Src/Session' is actually going to call Manager from session
If we go to Manager.js in Session, or in my case Auth we get this:
extend (key, implementation, type) {
and if I call this in start/hooks.js file like so (Test is imported at the top and is being initialized here)
hooks.after.providersRegistered(() => { ioc.extend('Adonis/Src/Auth', 'test', function () { return new Test(); }) })
it doesn't work because of two reasons
I need to put hooks.before or I get error saying that my test serializer needs to be defined
There is a fourth parameter missing that will specify that we are creating a serializer
And so the proper code looks like this
hooks.before.providersRegistered(() => { ioc.extend('Adonis/Src/Auth', 'test', function () { return new Test(); },'serializer') })
and now it works.
Another problem is in Ioc.extend documentation in code where it doesn't state that there need to be four paramaters, but only 3 (and this is also true for website docs)
Today I was asked to help someone in need of authentication with
Ad
(Active Directory) and I indicated the AdonisJS documentation (Extending Providers) that shows how to do this and I came across what I considered an error:hooks.after
, but I understand thathooks.before
should be used, because when the manager is called to get his extensions it is empty ([]). Once the extensions are called after theProviders
are registered.Adonis/Src/Session
provider, but this provider does not exist and to extend an authentication provider is slightly different, as the example below.Extend provider Auth with new scheme
Thank you
The text was updated successfully, but these errors were encountered: