We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When monitoring a Tag which contains Slashes it is impossible to remove it again.
/horizon/monitoring
Monitor Tag
123/123
Forward Slashes have to be allowed explicitly in route params:
Route::delete('/monitoring/{tag}', 'MonitoringController@destroy')->name('horizon.monitoring-tag.destroy');
could be
Route::delete('/monitoring/{tag}', 'MonitoringController@destroy') ->name('horizon.monitoring-tag.destroy') ->where('tag', '.*');
I will submit a PR if you want.
Thank you for your time and effor!
The text was updated successfully, but these errors were encountered:
This indeed isn't possible right now. Feel free to attempt a PR if you want. Thanks
Sorry, something went wrong.
fix laravel#1093, delete tags which contain forward slashes
77c8730
Allow deleting of Tags which contain forward slashes (Fixes #1093) (#…
2781279
…1196) * fix #1093, delete tags which contain forward slashes * remove double ; Co-authored-by: Stefan Gotre <[email protected]>
Successfully merging a pull request may close this issue.
Description:
When monitoring a Tag which contains Slashes it is impossible to remove it again.
Steps To Reproduce:
/horizon/monitoring
Monitor Tag
Button123/123
Reason
Forward Slashes have to be allowed explicitly in route params:
Suggested Solution
could be
I will submit a PR if you want.
Thank you for your time and effor!
The text was updated successfully, but these errors were encountered: