-
-
Notifications
You must be signed in to change notification settings - Fork 178
Add possibility to cancel server cancellation #1355
New issue
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
base: development
Are you sure you want to change the base?
Changes from 4 commits
08df3a9
b618398
7cd4f6d
9919e1f
3fc8d79
b3a4e22
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -65,6 +65,7 @@ | |
| Route::get('notifications/readAll', [NotificationController::class, 'readAll'])->name('notifications.readAll'); | ||
| Route::resource('notifications', NotificationController::class); | ||
| Route::patch('/servers/cancel/{server}', [ServerController::class, 'cancel'])->name('servers.cancel'); | ||
| Route::patch('/servers/{server}/uncancel', [App\Http\Controllers\ServerController::class, 'uncancel'])->name('servers.uncancel'); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I'm not arguing that you chose a more correct format, but we're talking about uncancel route that does opposite of cancel so logically new route should follow its naming pattern OR old one should be adjusted to have same naming pattern as new and other routes. |
||
| Route::post('/servers/validateDeploymentVariables', [ServerController::class, 'validateDeploymentVariables'])->name('servers.validateDeploymentVariables'); | ||
| Route::patch('/servers/{server}/billing_priority', [ServerController::class, 'updateBillingPriority'])->name('servers.updateBillingPriority'); | ||
| Route::delete('/servers/{server}', [ServerController::class, 'destroy'])->name('servers.destroy'); | ||
|
|
||
|
MrWeez marked this conversation as resolved.
|

Uh oh!
There was an error while loading. Please reload this page.