web: use absolute imports with path rewrite instead of relative imports (#3149)
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
import { AKResponse } from "@goauthentik/web/api/Client";
|
||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
|
||||
import { uiConfig } from "@goauthentik/web/common/config";
|
||||
import "@goauthentik/web/elements/forms/DeleteBulkForm";
|
||||
import { Table, TableColumn } from "@goauthentik/web/elements/table/Table";
|
||||
|
||||
import { t } from "@lingui/macro";
|
||||
|
||||
import { TemplateResult, html } from "lit";
|
||||
@ -5,12 +11,6 @@ import { customElement, property } from "lit/decorators.js";
|
||||
|
||||
import { CoreApi, UserConsent } from "@goauthentik/api";
|
||||
|
||||
import { AKResponse } from "../../api/Client";
|
||||
import { DEFAULT_CONFIG } from "../../api/Config";
|
||||
import { uiConfig } from "../../common/config";
|
||||
import "../forms/DeleteBulkForm";
|
||||
import { Table, TableColumn } from "../table/Table";
|
||||
|
||||
@customElement("ak-user-consent-list")
|
||||
export class UserConsentList extends Table<UserConsent> {
|
||||
@property({ type: Number })
|
||||
|
||||
Reference in New Issue
Block a user