Added routing and placeholder for medal data
This commit is contained in:
parent
da86e52735
commit
613272f413
2 changed files with 51 additions and 0 deletions
|
@ -158,6 +158,10 @@ sub startup {
|
|||
|
||||
my $api_v1 = $api->under('/v1');
|
||||
|
||||
my $api_v1_user = $api_v1->under('/user');
|
||||
|
||||
$api_v1_user->post('/medals')->to('api-v1-user-medals#index');
|
||||
|
||||
my $api_v1_supplier = $api_v1->under('/supplier');
|
||||
|
||||
$api_v1_supplier->post('/location')->to('api-v1-supplier-location#index');
|
||||
|
|
Reference in a new issue