2024-06-18 06:01:37 -04:00
|
|
|
import getMeta from '@/utils/meta'
|
|
|
|
|
2022-04-22 09:49:26 -04:00
|
|
|
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() {
|
2024-06-18 06:01:37 -04:00
|
|
|
Object.assign(getMeta('ol-ExposedSettings'), {
|
2022-04-22 09:49:26 -04:00
|
|
|
isOverleaf: true,
|
|
|
|
})
|
|
|
|
window.metaAttributesCache.set('ol-isExternalAuthenticationSystemUsed', false)
|
|
|
|
window.metaAttributesCache.set('ol-hasPassword', true)
|
|
|
|
window.metaAttributesCache.set('ol-passwordStrengthOptions', {
|
|
|
|
length: {
|
|
|
|
min: 2,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|