web/admin/user: fix user source connection lookups
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		| @ -23,7 +23,7 @@ class UserOAuthSourceConnectionViewSet(ModelViewSet): | ||||
|  | ||||
|     queryset = UserOAuthSourceConnection.objects.all() | ||||
|     serializer_class = UserOAuthSourceConnectionSerializer | ||||
|     filterset_fields = ["source"] | ||||
|     filterset_fields = ["source__slug"] | ||||
|  | ||||
|     def get_queryset(self): | ||||
|         if not self.request: | ||||
|  | ||||
| @ -7415,7 +7415,7 @@ paths: | ||||
|       operationId: sources_oauth_user_connections_list | ||||
|       description: Source Viewset | ||||
|       parameters: | ||||
|         - name: source | ||||
|         - name: source__slug | ||||
|           in: query | ||||
|           description: '' | ||||
|           required: false | ||||
|  | ||||
| @ -26,7 +26,7 @@ export class SourceSettingsOAuth extends BaseUserSettings { | ||||
|  | ||||
|     renderInner(source: OAuthSource): TemplateResult { | ||||
|         return html`${until(new SourcesApi(DEFAULT_CONFIG).sourcesOauthUserConnectionsList({ | ||||
|             source: this.objectId | ||||
|             sourceSlug: this.objectId | ||||
|         }).then((connection) => { | ||||
|             if (connection.results.length > 0) { | ||||
|                 return html`<p>${gettext("Connected.")}</p> | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer