mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
remove unused index
This commit is contained in:
parent
f327b5c0f7
commit
8c43dc67b7
@ -1,33 +0,0 @@
|
|||||||
import { createAccount } from './account/createAccount';
|
|
||||||
import { deleteAccount } from './account/deleteAccount';
|
|
||||||
import { getAccountById } from './account/getAccountById';
|
|
||||||
import { getAccountByUsername } from './account/getAccountByUsername';
|
|
||||||
import { getAccounts } from './account/getAccounts';
|
|
||||||
import { updateAccount } from './account/updateAccount';
|
|
||||||
import { createWebsite } from './website/createWebsite';
|
|
||||||
import { deleteWebsite } from './website/deleteWebsite';
|
|
||||||
import { getAllWebsites } from './website/getAllWebsites';
|
|
||||||
import { getUserWebsites } from './website/getUserWebsites';
|
|
||||||
import { getWebsiteById } from './website/getWebsiteById';
|
|
||||||
import { getWebsiteByShareId } from './website/getWebsiteByShareId';
|
|
||||||
import { getWebsiteByUuid } from './website/getWebsiteByUuid';
|
|
||||||
import { resetWebsite } from './website/resetWebsite';
|
|
||||||
import { updateWebsite } from './website/updateWebsite';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
createWebsite,
|
|
||||||
deleteWebsite,
|
|
||||||
getAllWebsites,
|
|
||||||
getUserWebsites,
|
|
||||||
getWebsiteById,
|
|
||||||
getWebsiteByShareId,
|
|
||||||
getWebsiteByUuid,
|
|
||||||
resetWebsite,
|
|
||||||
updateWebsite,
|
|
||||||
createAccount,
|
|
||||||
deleteAccount,
|
|
||||||
getAccountById,
|
|
||||||
getAccountByUsername,
|
|
||||||
getAccounts,
|
|
||||||
updateAccount,
|
|
||||||
};
|
|
@ -1,31 +0,0 @@
|
|||||||
import { getEventMetrics } from './event/getEventMetrics';
|
|
||||||
import { getEvents } from './event/getEvents';
|
|
||||||
import { saveEvent } from './event/saveEvent';
|
|
||||||
import { getPageviewMetrics } from './pageview/getPageviewMetrics';
|
|
||||||
import { getPageviews } from './pageview/getPageviews';
|
|
||||||
import { getPageviewStats } from './pageview/getPageviewStats';
|
|
||||||
import { savePageView } from './pageview/savePageView';
|
|
||||||
import { createSession } from './session/createSession';
|
|
||||||
import { getSessionByUuid } from './session/getSessionByUuid';
|
|
||||||
import { getSessionMetrics } from './session/getSessionMetrics';
|
|
||||||
import { getSessions } from './session/getSessions';
|
|
||||||
import { getActiveVisitors } from './stats/getActiveVisitors';
|
|
||||||
import { getRealtimeData } from './stats/getRealtimeData';
|
|
||||||
import { getWebsiteStats } from './stats/getWebsiteStats';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
getEventMetrics,
|
|
||||||
getEvents,
|
|
||||||
saveEvent,
|
|
||||||
getPageviewMetrics,
|
|
||||||
getPageviews,
|
|
||||||
getPageviewStats,
|
|
||||||
savePageView,
|
|
||||||
createSession,
|
|
||||||
getSessionByUuid,
|
|
||||||
getSessionMetrics,
|
|
||||||
getSessions,
|
|
||||||
getActiveVisitors,
|
|
||||||
getRealtimeData,
|
|
||||||
getWebsiteStats,
|
|
||||||
};
|
|
Loading…
x
Reference in New Issue
Block a user