53f89ef2f8
* main: (184 commits) web/admin: user details few tooltip buttons (#6899) website/blogs: added emm dashes (#6927) core: bump goauthentik.io/api/v3 from 3.2023083.2 to 3.2023083.3 (#6925) core: bump ruff from 0.0.289 to 0.0.290 (#6923) web: bump the babel group in /web with 2 updates (#6919) web: bump the storybook group in /web with 5 updates (#6920) web: bump rollup from 3.29.1 to 3.29.2 in /web (#6921) core: bump pycryptodome from 3.18.0 to 3.19.0 (#6922) core: bump django-filter from 23.2 to 23.3 (#6924) core: bump github.com/go-ldap/ldap/v3 from 3.4.5 to 3.4.6 (#6926) web: bump API Client version (#6918) core: create app transactional api (#6446) sources/ldap: add warning when a property mapping returns None or bytes (#6913) website: replace login card with png (#6911) core: compile backend translations (#6912) translate: Updates for file locale/en/LC_MESSAGES/django.po in zh-Hans on branch main (#6910) translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_CN on branch main (#6907) translate: Updates for file web/xliff/en.xlf in zh_CN on branch main (#6908) translate: Updates for file web/xliff/en.xlf in zh-Hans on branch main (#6909) web/admin: fix webauthn label order, add raw value (#6905) ... |
||
---|---|---|
.. | ||
.storybook | ||
authentik/sources | ||
icons | ||
src | ||
xliff | ||
.babelrc | ||
.dockerignore | ||
.eslintignore | ||
.eslintrc.json | ||
.eslintrc.precommit.json | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
lit-localize.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
robots.txt | ||
rollup.config.mjs | ||
rollup.proxy.mjs | ||
security.txt | ||
static.go | ||
static_outpost.go | ||
tsconfig.json | ||
web-test-runner.config.mjs |
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.