Skip to content

Commit

Permalink
Ready for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
nicedevil007 committed Jan 31, 2025
1 parent d69ebbf commit 849a319
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions authentik/lib/sync/outgoing/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class OutgoingSyncProvider(Model):
class Meta:
abstract = True

def client_for_model[T: User | Group](
self, model: type[T]
) -> BaseOutgoingSyncClient[T, Any, Any, Self]:
def client_for_model[
T: User | Group
](self, model: type[T]) -> BaseOutgoingSyncClient[T, Any, Any, Self]:
raise NotImplementedError

def get_object_qs[T: User | Group](self, type: type[T]) -> QuerySet[T]:
Expand Down
5 changes: 3 additions & 2 deletions website/integrations/services/beszel/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Leave the rest as default values.

## Beszel configuration

1. Sign in to Beszel with a browser of your choice and access the system setting by using this URL https://_beszel.company_/_/#/settings.
1. Sign in to Beszel with a browser of your choice and access the system setting by using this URL https://_beszel.company_/\_/#/settings.

2. Disable **Hide collection create and edit controls** and click **Save changes**.

Expand Down Expand Up @@ -84,9 +84,10 @@ Leave the rest as default values.
## User Creation

1. Manually Creating Users:

- Users are not created automatically when logging in with authentik. The owner must manually create each user in Beszel.
- To create users, go to the System Settings where you configured OpenID Connect.
- The URL for user creation is: https://_beszel.company_/_/#/collections?collection=pb_users_auth.
- The URL for user creation is: https://_beszel.company_/\_/#/collections?collection=pb_users_auth.
- Click **+ New record** and enter the user's **email** (must match the authentik email address).

2. Automatically Creating Users:
Expand Down

0 comments on commit 849a319

Please sign in to comment.