New Feedback API endpoint added
This commit is contained in:
parent
4da2c14066
commit
d38758ac90
2 changed files with 48 additions and 0 deletions
|
@ -132,6 +132,7 @@ sub startup {
|
|||
$api_public->post('/login')->to('api-auth#post_login');
|
||||
$api_public->post('/register')->to('api-register#post_register');
|
||||
$api_public->post('/logout')->to('api-auth#post_logout');
|
||||
$api_public->post('/feedback')->to('api-feedback#post_feedback');
|
||||
|
||||
# Private, must be authenticated api routes
|
||||
my $api = $api_public->under('/')->to('api-auth#auth');
|
||||
|
|
Reference in a new issue