Globally set redirect for create and edit forms

Is there a way to globally set redirection for forms to IndexResource instead of having to set it in every CreateResource and EditResource?
protected function getRedirectUrl(): string
{
return $this->previousUrl ?? $this->getResource()::getUrl('index');
}
protected function getRedirectUrl(): string
{
return $this->previousUrl ?? $this->getResource()::getUrl('index');
}
Solution:
I don't think so. Maybe you could create a trait using this code and use it where you need it
Jump to solution
2 Replies
Solution
LeandroFerreira
I don't think so. Maybe you could create a trait using this code and use it where you need it
Batman
BatmanOP4w ago
Thanks

Did you find this page helpful?