authentik/web
Jens L 05d73f688c
policies/event_matcher: add model filter (#5802)
* policies/event_matcher: add model filter

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* cleanup

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* improve logic

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* remove t``

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
2023-06-12 22:11:11 +02:00
..
.storybook website/integrations: add account linking note for WriteFreely (#5804) 2023-06-08 13:27:35 +02:00
authentik/sources
icons
src policies/event_matcher: add model filter (#5802) 2023-06-12 22:11:11 +02:00
xliff sources/ldap: add support for cert based auth (#5850) 2023-06-12 15:41:44 +02:00
.babelrc
.dockerignore
.eslintignore
.eslintrc.json
.gitignore
.prettierignore website/integrations: add account linking note for WriteFreely (#5804) 2023-06-08 13:27:35 +02:00
.prettierrc.json
README.md
lit-localize.json
package-lock.json web: bump API Client version (#5935) 2023-06-12 18:25:25 +02:00
package.json web: bump API Client version (#5935) 2023-06-12 18:25:25 +02:00
robots.txt
rollup.config.js
rollup.proxy.js
security.txt
static.go
static_outpost.go
tsconfig.json

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.