Web: issue 7864, application list view
Details
This commit is a quick-and-dirty prototypes for what such a list view would look like. None of the usual bells and whistles have been applied: the styles are ugly, the reveals overly quick, and thereβs probably a host of other things we could do to pretty it up (like search, or toggle between Alphabetical and ASCIIBetical, although in the context of I18N does that even mean anything anymore?). But it does the job.
- [X] The code has been formatted (
make web)
Deploy Preview for authentik-storybook ready!
| Name | Link |
|---|---|
| Latest commit | c8be33741445a0c8857db4092b6267b21c69e7ed |
| Latest deploy log | https://app.netlify.com/sites/authentik-storybook/deploys/663950497e2e430009b378c7 |
| Deploy Preview | https://deploy-preview-9612--authentik-storybook.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Deploy Preview for authentik-docs ready!
| Name | Link |
|---|---|
| Latest commit | c8be33741445a0c8857db4092b6267b21c69e7ed |
| Latest deploy log | https://app.netlify.com/sites/authentik-docs/deploys/66395049ad7ae20008dc802a |
| Deploy Preview | https://deploy-preview-9612--authentik-docs.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 92.50%. Comparing base (
49cf10e) to head (c8be337). Report is 30 commits behind head on main.
Additional details and impacted files
@@ Coverage Diff @@
## main #9612 +/- ##
==========================================
+ Coverage 92.46% 92.50% +0.03%
==========================================
Files 669 669
Lines 32751 32899 +148
==========================================
+ Hits 30282 30432 +150
+ Misses 2469 2467 -2
| Flag | Coverage Ξ | |
|---|---|---|
| e2e | 50.56% <ΓΈ> (-0.07%) |
:arrow_down: |
| integration | 25.92% <ΓΈ> (-0.07%) |
:arrow_down: |
| unit | 89.79% <ΓΈ> (+0.03%) |
:arrow_up: |
Flags with carried forward coverage won't be shown. Click here to find out more.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
authentik PR Installation instructions
Instructions for docker-compose
Add the following block to your .env file:
AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-ghcr.io/goauthentik/dev-server:gh-c8be33741445a0c8857db4092b6267b21c69e7ed
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
For arm64, use these values:
AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-ghcr.io/goauthentik/dev-server:gh-c8be33741445a0c8857db4092b6267b21c69e7ed-arm64
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
Afterwards, run the upgrade commands from the latest release notes.
Instructions for Kubernetes
Add the following block to your values.yml file:
authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-ghcr.io/goauthentik/dev-server:gh-c8be33741445a0c8857db4092b6267b21c69e7ed
For arm64, use these values:
authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-ghcr.io/goauthentik/dev-server:gh-c8be33741445a0c8857db4092b6267b21c69e7ed-arm64
Afterwards, run the upgrade commands from the latest release notes.