mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 05:41:33 +02:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
42 lines
772 B
JavaScript
42 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}
|
|
*/
|