This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/web/packages/monolith
Ken Sternberg 12559f518a Merge branch 'main' into web/lage
* main: (21 commits)
  web: bump API Client version (#7964)
  release: 2023.10.5
  web: bump API Client version (#7962)
  providers/scim: use lock for sync (#7948)
  stages/email: prevent authentik emails from being marked as spam (also add text template support) (#7949)
  website/docs: prepare 2023.10.5 (#7947)
  web: bump the sentry group in /web with 2 updates (#7955)
  web: bump the wdio group in /tests/wdio with 4 updates (#7957)
  core: bump goauthentik.io/api/v3 from 3.2023104.4 to 3.2023104.5 (#7958)
  web: bump API Client version (#7953)
  events: add ASN Database reader (#7793)
  translate: Updates for file web/xliff/en.xlf in fr (#7951)
  website/docs: add expression example for geoip (#7739)
  website: fix hosted API browser (#7946)
  core: bump github.com/redis/go-redis/v9 from 9.3.0 to 9.3.1 (#7942)
  web: bump the sentry group in /web with 2 updates (#7944)
  web: bump the storybook group in /web with 7 updates (#7945)
  core: bump goauthentik.io/api/v3 from 3.2023104.3 to 3.2023104.4 (#7943)
  providers/scim: set timeout based on page and page count (#7941)
  translate: Updates for file web/xliff/en.xlf in zh_CN (#7928)
  ...
2023-12-21 12:11:25 -08:00
..
.storybook Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
authentik/sources Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
icons Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
scripts Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
src Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
xliff Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.babelrc Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.dockerignore Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.eslintignore Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.eslintrc.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.eslintrc.precommit.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.gitignore Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.prettierignore Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
.prettierrc.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
README.md Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
lit-localize.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
package-lock.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
package.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
rollup.config.mjs Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
rollup.proxy.mjs Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
tsconfig.json Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00
web-test-runner.config.mjs Merge branch 'main' into web/lage 2023-12-21 12:11:25 -08:00

README.md

authentik WebUI

This is the default UI for the authentik server. The documentation is going to be a little sparse for awhile, but at least let's get started.

Comments

NOTE: The comments in this section are for specific changes to this repository that cannot be reliably documented any other way. For the most part, they contain comments related to custom settings in JSON files, which do not support comments.

  • tsconfig.json:
    • compilerOptions.useDefineForClassFields: false is required to make TSC use the "classic" form of field definition when compiling class definitions. Storybook does not handle the ESNext proposed definition mechanism (yet).
    • compilerOptions.plugins.ts-lit-plugin.rules.no-unknown-tag-name: "off": required to support rapidoc, which exports its tag late.
    • compilerOptions.plugins.ts-lit-plugin.rules.no-missing-import: "off": lit-analyzer currently does not support path aliases very well, and cannot find the definition files associated with imports using them.
    • compilerOptions.plugins.ts-lit-plugin.rules.no-incompatible-type-binding: "warn": lit-analyzer does not support generics well when parsing a subtype of HTMLElement. As a result, this threw too many errors to be supportable.