Skip to content

Commit

Permalink
Add comments to test pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
David Mang committed Sep 1, 2024
1 parent c4044f9 commit f8a4402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/src/api/chat.api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { ChatBody } from "../types/chatbot/chatbot.types";
import api from "./interceptor.api";

// Fetch all chats for a user
// @limit: Number of loaded chats. Default number is 5.
export const fetchChats = async (limit: number) => {
try {
if (!limit) {
Expand Down
1 change: 0 additions & 1 deletion server/chat/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from rest_framework.response import Response
from rest_framework import status

# Create your views here.
class CreateUserView(generics.CreateAPIView):
queryset = User.objects.all()
serializer_class = UserSerializer
Expand Down

0 comments on commit f8a4402

Please sign in to comment.