aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/services/BrowserStorageService.js
blob: b7d34bf1716861470cd7bcf9fff8260cfa6cbdaf (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

import { getBuilder } from '@nextcloud/browser-storage'

export default getBuilder('core')
	.clearOnLogout()
	.persist()
	.build()