mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 05:18:21 +00:00
API/service layout deprecation warning
This commit is contained in:
parent
ef69729dfd
commit
1a4b8f4269
1 changed files with 6 additions and 1 deletions
|
@ -2,6 +2,11 @@ request = require "request"
|
|||
logger = require "logger-sharelatex"
|
||||
Settings = require "settings-sharelatex"
|
||||
|
||||
# DEPRECATED! This method of getting user details via track-changes is deprecated
|
||||
# in the way we lay out our services.
|
||||
# Instead, web should be responsible for collecting the raw data (user_ids) and
|
||||
# filling it out with calls to other services. All API calls should create a
|
||||
# tree-like structure as much as possible, with web as the root.
|
||||
module.exports = WebApiManager =
|
||||
sendRequest: (url, callback = (error, body) ->) ->
|
||||
request.get {
|
||||
|
@ -56,4 +61,4 @@ module.exports = WebApiManager =
|
|||
project = JSON.parse(body)
|
||||
catch error
|
||||
return callback(error)
|
||||
callback null, project
|
||||
callback null, project
|
||||
|
|
Loading…
Reference in a new issue