hi
Is possible that the chat module make convertion on groups and channels?
not yet possible
Is possible customize the message of the chat notifications?
Is this notification belong mvc or angular UI?
hi
Do you mean this video?
https://abp.io/conference/speakers/gleidson-nascimento
hi
its redirecting to https://example/Account/Login. how can I update Account/Login to Account/Passwordless.
https://support.abp.io/QA/Questions/160/How-to-customize-an-ABP-project
https://gist.github.com/ebicoglu/ce0f0425bab806d0ee1a87d0073af96b
hi
You can try this:
Configure<IdentityServerOptions>(builder =>
{
builder.InputLengthRestrictions.Scope = 1000000;
});
https://identityserver4.readthedocs.io/en/latest/reference/options.html#inputlengthrestrictions
hi
I can check it remotely tomorrow.
UTC+8 9:00-12:00 13:00-18:00
You can email me liming.ma@volosoft.com
hi
This is related to OAuth2
https://oauth.net/2/grant-types/password/
hi
You can get access_token from AuthServer/IdentityServer and then carry the token to call the API.
hi
I can check it remotely. My time zone is utc+8.
If you Call getAuthor API of TestApp.HttpApi.Host and get UnAuthorised
You can try to use context.HttpContext.User = newPrincipal; to replace the _currentPrincipalAccessor.Change(newPrincipal);
After getting the token Call getAuthor API with that token ( tenant you can hardcoded) Return author data For me this is giving UnAuthorised exception because of user not loggin in
Call getAuthor API of TestApp.HttpApi.Host or TestApp.AuthServer?