Skip to content

Commit

Permalink
added component and function to public api
Browse files Browse the repository at this point in the history
  • Loading branch information
KlemenSpruk committed Oct 27, 2023
1 parent 513a2b0 commit d4ed8e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vue/apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import BrowserCheck from './components/browser-check.vue';
import CookieNotice from './components/cookie-notice.vue';
import AppNotification from './components/notification.vue';
import NotificationsEditor from './components/notifications-editor.vue';
import ProfileSearch from './components/profile-search.vue';
import ProjectSettings from './components/project-settings.vue';
import TitleBar from './components/titlebar.vue';
import LoginDialog from './components/user-session/login-dialog.vue';
Expand All @@ -29,6 +30,8 @@ export { default as useLoginDialog } from './components/user-session/use-login-d

export { showNotification, showGeneralErrorNotification, showMaintenanceNotification } from './notifications';

export { default as showAddProfileModal } from './profile-search-add-user';

export const componentsConfig: { [key: string]: Component } = {
TitleBar,
Breadcrumbs,
Expand All @@ -42,6 +45,7 @@ export const componentsConfig: { [key: string]: Component } = {
LoginDialog,
NotificationsEditor,
ProjectSettings,
ProfileSearch,
};

type AppData = Object;
Expand Down

0 comments on commit d4ed8e8

Please sign in to comment.