New api for public use to get feedback url

This commit is contained in:
Dillon
2023-09-21 21:31:25 +08:00
parent fe67cc6c5b
commit 25417ba5be
+4
View File
@@ -8,5 +8,9 @@ Route::group(['middleware' => 'apipub', 'prefix' => 'v1', 'as' => 'apipub.'], fu
Route::get('transactions/mappable/query/with-details', 'Transactions\ListMappableTransactionWithDetailsController@list')->name('transaction.mappable.list.with_details');
Route::get('transactions/mappable/query', 'Transactions\ListMappableTransactionsController@list')->name('transaction.mappable.list');
Route::get('groups/query', 'Transactions\ListGroupsController@list')->name('group.list');
Route::group(['prefix' => 'feedback', 'as' => 'feedback.', 'namespace' => 'HelpMenu'], function () {
Route::post('/generate', 'GenerateFeedbackUrlController@generate')->name('feedback.url.generate');
});
});
});