browsertrix/frontend/src/pages/index.ts
Tessa Walsh 0fa60ebc45
Rename archives/teams -> orgs in codebase + add db migration (#486)
* Rename archives to orgs and aid to oid on backend

* Rename archive to org and aid to oid in frontend

* Remove translation artifact

* Rename team -> organization

* Add database migrations and run once on startup

* This commit also applies the new by_one_worker decorator to other
asyncio tasks to prevent heavy tasks from being run in each worker.

* Run black, pylint, and husky via pre-commit

* Set db version and use in migrations

* Update and prepare database in single task

* Migrate k8s configmaps
2023-01-18 14:51:04 -08:00

40 lines
1.4 KiB
TypeScript

import { Home } from "./home";
customElements.define("btrix-home", Home);
import(/* webpackChunkName: "sign-up" */ "./sign-up").then(({ SignUp }) => {
customElements.define("btrix-sign-up", SignUp);
});
import(/* webpackChunkName: "log-in" */ "./log-in").then(({ LogInPage }) => {
customElements.define("btrix-log-in", LogInPage);
});
import(/* webpackChunkName: "orgs" */ "./orgs").then(({ Orgs }) => {
customElements.define("btrix-orgs", Orgs);
});
import(/* webpackChunkName: "org" */ "./org").then(({ Org }) => {
customElements.define("btrix-org", Org);
});
import(/* webpackChunkName: "crawls" */ "./crawls").then(({ Crawls }) => {
customElements.define("btrix-crawls", Crawls);
});
import(/* webpackChunkName: "join" */ "./join").then(({ Join }) => {
customElements.define("btrix-join", Join);
});
import(/* webpackChunkName: "verify" */ "./verify").then(({ Verify }) => {
customElements.define("btrix-verify", Verify);
});
import(/* webpackChunkName: "reset-password" */ "./reset-password").then(
({ ResetPassword }) => {
customElements.define("btrix-reset-password", ResetPassword);
}
);
import(/* webpackChunkName: "users-invite" */ "./users-invite").then(
({ UsersInvite }) => {
customElements.define("btrix-users-invite", UsersInvite);
}
);
import(/* webpackChunkName: "accept-invite" */ "./accept-invite").then(
({ AcceptInvite }) => {
customElements.define("btrix-accept-invite", AcceptInvite);
}
);