mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
aa480a2663
[web] migrate from window attributes to getMeta GitOrigin-RevId: 3dcf1ab6b01155e5e4abeb3e78d0fa9053e055bc
23 lines
651 B
JavaScript
23 lines
651 B
JavaScript
import getMeta from '@/utils/meta'
|
|
|
|
const MOCK_DELAY = 1000
|
|
|
|
export function defaultSetupMocks(fetchMock) {
|
|
fetchMock.post(/\/user\/settings/, 200, {
|
|
delay: MOCK_DELAY,
|
|
})
|
|
}
|
|
|
|
export function setDefaultMeta() {
|
|
window.metaAttributesCache.set('ol-user', {
|
|
...window.metaAttributesCache.get('ol-user'),
|
|
email: 'sherlock@holmes.co.uk',
|
|
first_name: 'Sherlock',
|
|
last_name: 'Holmes',
|
|
})
|
|
Object.assign(getMeta('ol-ExposedSettings'), {
|
|
hasAffiliationsFeature: false,
|
|
})
|
|
window.metaAttributesCache.set('ol-isExternalAuthenticationSystemUsed', false)
|
|
window.metaAttributesCache.set('ol-shouldAllowEditingDetails', true)
|
|
}
|