(ctx context.Context, fileID uuid.UUID, prepared rbac.PreparedAuthorized)
| 745 | type chatQuerier interface { |
| 746 | GetAuthorizedChats(ctx context.Context, arg GetChatsParams, prepared rbac.PreparedAuthorized) ([]GetChatsRow, error) |
| 747 | GetAuthorizedChatsByChatFileID(ctx context.Context, fileID uuid.UUID, prepared rbac.PreparedAuthorized) ([]Chat, error) |
| 748 | } |
| 749 | |
| 750 | func (q *sqlQuerier) GetAuthorizedChats(ctx context.Context, arg GetChatsParams, prepared rbac.PreparedAuthorized) ([]GetChatsRow, error) { |
no outgoing calls