invite_code.js 293 B

123456789101112
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. const profix = '/api/live/';
  5. const vision = 'v0';
  6. const index = 'system';
  7. const target = 'inviteCode';
  8. router.get('target', `${profix}${vision}/${index}/${target}`, controller[index][target].index);
  9. };