Hi, assuming that by "extend swagger", you mean adding new endpoint.
If so, you can refer to @ismcagdas 's suggestion
If you need an endpoint, you can create a method on UserAppService and agian use the UserManager to detect users existance.
for documentation on application service, you can refer to https://aspnetboilerplate.com/Pages/Documents/Application-Services
Hi, you can refer to the tutorials for extending existing entity and add commission field to it.
https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Extending-Existing-Entities#derive-from-edition-entity
otherwise, you can map the entity into DTO and work on it.
Hi, i have tried fresh download of 6.9.1 and did not see those warnings.
Hi, can you try resolving QueryContainer
instead of RoleQuery
in the MainSchema
?
You should follow similar project structure and initialization code as ANZ Graphql project so that if there is any bugfix or enhancement, you can patch it easily
Hi, it is fine to implement background in the domain layer.
ANZ has similar implementation like SubscriptionExpirationCheckWorker.cs
nonetheless, if you are using default background job manager, you might want to consider adopting external background job manager such as HangFire, etc..., to enqueue reporting related jobs separately from the main job queue.
Hi, do you meant SSO for passwordless authentication?
or you are looking remove password validation completely? meaning as long as a person provides any email addrsss, the person will be logged in as the email address given?
ideally, you should consider using
https://aspnetboilerplate.com/Pages/Documents/Startup-Configuration#creating-configuration-for-a-module
as you won't want every single of your API calls to read from appsettings.json
you can read more about something similar at
https://security.stackexchange.com/questions/178663/why-isnt-stealing-cookies-enough-to-authenticate
not sure if you had gone through the conversation in details.
basically you can't directly dowload the source code from github repo and upgrade your local copy straight away.
www.aspnetzero.com/download only pack certain files/folders into the downloaded zip file depends on the selected configurations
e.g.
these two have substaintial difference in terms of folder structure and start up code.
please read upgrade guide https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-185281191
step by step https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-186843738