Skip to content

Commit

Permalink
fix web
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
  • Loading branch information
BeryJu committed Feb 1, 2025
1 parent 4a164dd commit 80b8f9f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions authentik/enterprise/providers/ssf/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,11 @@ def component(self) -> str:
return "ak-provider-ssf-form"

class Meta:
verbose_name = _("SSF Provider")
verbose_name_plural = _("SSF Providers")
verbose_name = _("Shared Signals Framework Provider")
verbose_name_plural = _("Shared Signals Framework Providers")
permissions = [
# This overrides the default "add_stream" permission of the Stream object,
# as the user requesting to add a stream must have the permission on the provider
("add_stream", _("Add stream to SSF provider")),
]

Expand Down
2 changes: 1 addition & 1 deletion web/src/admin/providers/ssf/SSFProviderViewPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class SSFProviderViewPage extends AKElement {
<ak-rbac-object-permission-page
slot="page-permissions"
data-tab-title="${msg("Permissions")}"
model=${RbacPermissionsAssignedByUsersListModelEnum.ProvidersSsfSsfprovider}
model=${RbacPermissionsAssignedByUsersListModelEnum.AuthentikProvidersSsfSsfprovider}
objectPk=${this.provider.pk}
></ak-rbac-object-permission-page>
</ak-tabs>`;
Expand Down

0 comments on commit 80b8f9f

Please sign in to comment.