packages: akql - #18867
Open
BeryJu wants to merge 11 commits into
Open
Conversation
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-integrations ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
GirlBossRush
approved these changes
Dec 16, 2025
Signed-off-by: Jens Langhammer <jens@goauthentik.io> # Conflicts: # authentik/api/search/fields.py # authentik/api/search/ql.py # authentik/api/search/schema.py # authentik/core/api/groups.py # authentik/core/api/users.py # authentik/events/api/events.py # pyproject.toml # uv.lock
| return not self.__eq__(other) | ||
|
|
||
|
|
||
| class Expression(Node): |
| self.right = right | ||
|
|
||
|
|
||
| class Name(Node): |
| return ".".join(self.parts) | ||
|
|
||
|
|
||
| class Const(Node): |
| self.value = value | ||
|
|
||
|
|
||
| class List(Node): |
| return [i.value for i in self.items] | ||
|
|
||
|
|
||
| class Operator(Node): |
| [f.name for f in model._meta.get_fields() if f.name != "password"], | ||
| ) | ||
|
|
||
| def get_field_instance(self, model, field_name): |
| return self._models | ||
|
|
||
| @classmethod | ||
| def model_label(self, model): |
| pass | ||
|
|
||
|
|
||
| class Variable(Node): |
| from decimal import Decimal | ||
|
|
||
| from django.conf import settings | ||
| from django.core.exceptions import FieldDoesNotExist |
| # parsetab.py | ||
| # This file is automatically generated. Do not edit. | ||
| # pylint: disable=W,C,R | ||
| _tabversion = "3.10" |
rissson
reviewed
Jun 29, 2026
| "django-storages[s3]==1.14.6", | ||
| "django-tenants==3.10.1", | ||
| "django==5.2.15", | ||
| "djangoql==0.19.1", |
Member
There was a problem hiding this comment.
you'll need to add akql as a dep here
Member
|
packages/akql also needs to be added in lifecycle/container/Dockerfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fork djangoql
Add support for variables
remove things we don't use
add typing (mostly)
remove code smells
things I want to look into for this: