2545815f08
* main: (23 commits) web: bump API Client version (#7513) web: bump the sentry group in /web with 2 updates (#7500) core: bump pytest-django from 4.6.0 to 4.7.0 (#7497) core: bump black from 23.10.1 to 23.11.0 (#7498) core: bump ruff from 0.1.4 to 0.1.5 (#7499) core: bump golang.org/x/oauth2 from 0.13.0 to 0.14.0 (#7501) web: bump the wdio group in /tests/wdio with 3 updates (#7502) release: 2023.10.3 ci: fix permissions for release pipeline to publish binaries (#7512) website/docs: update release notes for 2023.10.3 core: fix worker beat toggle inverted (#7508) website/docs: update release notes for 2023.10.3 website/docs: fix anchor link (#7492) consistent variable name add more tooltips and add device authn/authz fix wrong color events: fix gdpr compliance always running website/docs: Fix a small grammar issue (#7490) core: bump golang from 1.21.3-bookworm to 1.21.4-bookworm web: bump pyright from 1.1.334 to 1.1.335 in /web ... |
||
---|---|---|
.. | ||
.storybook | ||
authentik/sources | ||
icons | ||
scripts | ||
src | ||
xliff | ||
.babelrc | ||
.dockerignore | ||
.eslintignore | ||
.eslintrc.json | ||
.eslintrc.precommit.json | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
README.md | ||
lit-localize.json | ||
package-lock.json | ||
package.json | ||
robots.txt | ||
rollup.config.mjs | ||
rollup.proxy.mjs | ||
security.txt | ||
static.go | ||
static_outpost.go | ||
tsconfig.json | ||
web-test-runner.config.mjs |
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 ofHTMLElement
. As a result, this threw too many errors to be supportable.