RVRNEXT-5 add new endpoints for currency handling

This commit is contained in:
Bence Pőcze 2023-04-23 17:36:03 +02:00
parent c520c256ee
commit 7d63de4403
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -66,6 +66,10 @@ Container::$routeCollection->group('communities', function (RouteCollection $rou
$routeCollection->post('community-members-new', 'newMember', [CommunityController::class, 'newMember']);
$routeCollection->post('community-members-edit', 'editMember', [CommunityController::class, 'editMember']);
$routeCollection->post('community-members-delete', 'deleteMember', [CommunityController::class, 'deleteMember']);
$routeCollection->get('community-currencies', 'currencies', [CommunityController::class, 'getCurrenciesEdit']);
$routeCollection->post('community-currencies-new', 'newCurrency', [CommunityController::class, 'newCurrency']);
$routeCollection->post('community-currencies-edit', 'editCurrency', [CommunityController::class, 'editCurrency']);
$routeCollection->post('community-currencies-delete', 'deleteCurrency', [CommunityController::class, 'deleteCurrency']);
});
});