mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 21:01:33 +02:00
10 lines
295 B
CoffeeScript
10 lines
295 B
CoffeeScript
AuthenticationController = require('../Authentication/AuthenticationController')
|
|
ContactController = require "./ContactController"
|
|
|
|
module.exports =
|
|
apply: (webRouter, apiRouter) ->
|
|
webRouter.get '/user/contacts',
|
|
AuthenticationController.requireLogin(),
|
|
ContactController.getContacts
|
|
|