Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819
  1. // https://github.com/connor11528/task-app-backend/blob/master/src/api/index.js
  2. const profileApi = {
  3. get: {
  4. async handler(request, h) {
  5. try {
  6. console.log('get handler for profile');
  7. // You have to return SOMETHING
  8. return { thing: 'profile' }
  9. } catch (err) {
  10. // Boom.badImplementation(err);
  11. }
  12. }
  13. }
  14. };
  15. module.exports = profileApi;