- Issue created by @gR3m4ik
Hello!
For my needs, I need to change the views_bulk_operations.update_selection path in the routing
from path: '/views-bulk-operations/ajax/{view_id}/{display_id}'
to path: 'admin/views-bulk-operations/ajax/{view_id}/{display_id}'
. I implemented this via RouteSubscriberBase in EventSubscriber.
But because you have a static path in js/frontUI.js - it prevents me from changing the path to the one I need.
var target_uri = drupalSettings.path.baseUrl + drupalSettings.path.pathPrefix + 'views-bulk-operations/ajax/' + this.view_id + '/' + this.display_id;