Welcome to mirror list, hosted at ThFree Co, Russian Federation.

local_db.js « apollo « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cda30ff9d42255011f368bbc64d57d9b721370a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* eslint-disable @gitlab/require-i18n-strings */
import Dexie from 'dexie';

export const db = new Dexie('GLLocalCache');
db.version(1).stores({
  pages: 'url, timestamp',
  queries: '',
  project: 'id',
  group: 'id',
  usercore: 'id',
  issue: 'id, state, title',
  label: 'id, title',
  milestone: 'id',
});