docs: Update configuration docs to redirect to module configuration#387
docs: Update configuration docs to redirect to module configuration#387exaby73 wants to merge 1 commit intoserverpod:mainfrom
Conversation
marcelomendoncasoares
left a comment
There was a problem hiding this comment.
Only one minor question for clarification!
| serverpod_auth_idp: | ||
| nickname: auth | ||
| my_custom_module: | ||
| nickname: custom | ||
| ``` | ||
|
|
||
| This allows you to reference module classes as `module:auth:UserInfo` in your model files. See the [modules documentation](modules) for more information. | ||
| This allows you to reference module classes as `module:auth:AuthUser` in your model files. See the [modules documentation](modules) for more information. |
There was a problem hiding this comment.
Question: Will this work? Since AuthUser is declared under serverpod_auth_core, but exported from serverpod_auth_idp.
If this is true, we should also update the reference in the authentication docs to use module:serverpod_auth_idp:AuthUser and fix serverpod/serverpod#4492.
There was a problem hiding this comment.
Above a nickname is given so it's pointing to serverpod_auth_idp
There was a problem hiding this comment.
We should change the module referenced here to core, right? Since we already saw that it won't work due to the serverpod_auth_core models being exported in the serverpod_auth_ipd_server/core.dart. Unless we add the export to both the client and server central export file for the IDP package. What do you think?
No description provided.