mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
35 lines
791 B
JavaScript
35 lines
791 B
JavaScript
|
const MOCK_DELAY = 1000
|
||
|
|
||
|
export function defaultSetupMocks(fetchMock) {
|
||
|
fetchMock.post(
|
||
|
/\/user\/password\/update/,
|
||
|
{
|
||
|
status: 200,
|
||
|
body: {
|
||
|
message: {
|
||
|
type: 'success',
|
||
|
email: 'tim.alby@overleaf.com',
|
||
|
text: 'Password changed',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
delay: MOCK_DELAY,
|
||
|
}
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export function setDefaultMeta() {
|
||
|
window.metaAttributesCache = window.metaAttributesCache || new Map()
|
||
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
||
|
isOverleaf: true,
|
||
|
})
|
||
|
window.metaAttributesCache.set('ol-isExternalAuthenticationSystemUsed', false)
|
||
|
window.metaAttributesCache.set('ol-hasPassword', true)
|
||
|
window.metaAttributesCache.set('ol-passwordStrengthOptions', {
|
||
|
length: {
|
||
|
min: 2,
|
||
|
},
|
||
|
})
|
||
|
}
|