mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
19 lines
855 B
JavaScript
19 lines
855 B
JavaScript
import settings from '@baserow/modules/core/middleware/settings'
|
|
import authentication from '@baserow/modules/core/middleware/authentication'
|
|
import authenticated from '@baserow/modules/core/middleware/authenticated'
|
|
import staff from '@baserow/modules/core/middleware/staff'
|
|
import workspacesAndApplications from '@baserow/modules/core/middleware/workspacesAndApplications'
|
|
import pendingJobs from '@baserow/modules/core/middleware/pendingJobs'
|
|
import urlCheck from '@baserow/modules/core/middleware/urlCheck'
|
|
|
|
/* eslint-disable-next-line */
|
|
import Middleware from './middleware'
|
|
|
|
Middleware.settings = settings
|
|
Middleware.authentication = authentication
|
|
Middleware.authenticated = authenticated
|
|
Middleware.staff = staff
|
|
Middleware.workspacesAndApplications = workspacesAndApplications
|
|
Middleware.pendingJobs = pendingJobs
|
|
Middleware.urlCheck = urlCheck
|