Hi,
As I see, you are using Hangire background worker integration, not Hangfire background job integration. they are different.
if you want to use Hangfire background job integration too , please check this document: https://abp.io/docs/latest/framework/infrastructure/background-jobs/hangfire
PS, don't forget to remove
Volo.Abp.BackgroundJobs
package and removeBackgroundJobWorker
from the Hangfire dashboard
Hi,
Could you please share a test project with me? i will check it , thanks.
shiwei.liang@volosoft.com
Yes, you can open abp studio and click File -> Initialize Existing Solution
Hi,
if If the current request is to logout, then do not redirect
Hi,
Yes, old and new CLI use different template sources.
Hi,
Could you please share your code to reproduce it
Thanks it works but after redirect if user tries to logout gets errors on page if it is not redirected everything works fine.
It looks like it has nothing to do with this. could you try to test it without this change?
Please also tell how to get public website url from appsetting inside this code block?
You can configure it in the appsettings.json
and read it.
Hi,
because the HTTP Request is async. you can try this
//<suite-custom-code-block-1>
var _authors;
window.acme.bookStore.books.books.getAuthorLookup()
.then(function(authors){
_authors = authors;
});
//</suite-custom-code-block-1>
.........
{ data: "authorName",
render: function(authorID)
{
return _authors.items.find(type => type.id === authorID).firstname;
}
}