You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/backend/models/index.ts

60 lines
1.4 KiB

import { apiKeys } from './apiKeys.ts'
import { approvals } from './approvals.ts'
import { assets } from './assets.ts'
import { authentication } from './authentication.ts'
import { blocks } from './blocks.ts'
import { extensions } from './extensions.ts'
import { flags } from './flags.ts'
import { groups } from './groups.ts'
import { hooks } from './hooks.ts'
import { icons } from './icons.ts'
import { jobs } from './jobs.ts'
import { locales } from './locales.ts'
import { navigation } from './navigation.ts'
import { pageHistory } from './pageHistory.ts'
import { pages } from './pages.ts'
import { pageWatching } from './pageWatching.ts'
import { passkeys } from './passkeys.ts'
import { rateLimits } from './rateLimits.ts'
import { rendering } from './rendering.ts'
import { search } from './search.ts'
import { security } from './security.ts'
import { sessions } from './sessions.ts'
import { settings } from './settings.ts'
import { sites } from './sites.ts'
import { storage } from './storage.ts'
import { tags } from './tags.ts'
import { tree } from './tree.ts'
import { users } from './users.ts'
export default {
apiKeys,
approvals,
assets,
authentication,
blocks,
extensions,
flags,
groups,
hooks,
icons,
jobs,
locales,
navigation,
pageHistory,
pages,
pageWatching,
passkeys,
rateLimits,
rendering,
search,
security,
sessions,
settings,
sites,
storage,
tags,
tree,
users
}