mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
41 lines
772 B
JavaScript
41 lines
772 B
JavaScript
const AbstractMockApi = require('./AbstractMockApi')
|
|
|
|
class MockAnalyticsApi extends AbstractMockApi {
|
|
reset() {
|
|
this.updates = {}
|
|
}
|
|
|
|
applyRoutes() {
|
|
this.app.get('/graphs/:graph', (req, res) => {
|
|
return res.json({})
|
|
})
|
|
|
|
this.app.get('/recentInstitutionActivity', (req, res) => {
|
|
res.json({
|
|
institutionId: 123,
|
|
day: {
|
|
projects: 0,
|
|
users: 0,
|
|
},
|
|
week: {
|
|
projects: 0,
|
|
users: 0,
|
|
},
|
|
month: {
|
|
projects: 1,
|
|
users: 2,
|
|
},
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
module.exports = MockAnalyticsApi
|
|
|
|
// type hint for the inherited `instance` method
|
|
/**
|
|
* @function instance
|
|
* @memberOf MockAnalyticsApi
|
|
* @static
|
|
* @returns {MockAnalyticsApi}
|
|
*/
|