fixed: duplicate name (#1202)

### What problem does this PR solve?

Duplicate method name.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
cecilia-uu
2024-06-18 16:28:46 +08:00
committed by GitHub
parent 01ad2e5296
commit 8d667d5abd
2 changed files with 2 additions and 3 deletions

View File

@ -42,8 +42,7 @@ class KnowledgebaseService(CommonService):
@classmethod
@DB.connection_context()
def get_by_tenant_ids(cls, joined_tenant_ids, user_id,
offset, count, orderby, desc):
def get_by_tenant_ids_by_offset(cls, joined_tenant_ids, user_id, offset, count, orderby, desc):
kbs = cls.model.select().where(
((cls.model.tenant_id.in_(joined_tenant_ids) & (cls.model.permission ==
TenantPermission.TEAM.value)) | (