Skip to content

Commit

Permalink
Change context in build docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
David Mang committed Sep 1, 2024
1 parent f8a4402 commit a810d17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
include:
- dockerfile: ./docker/client/Dockerfile
image: ghcr.io/ls1intum/thaii/client
context: ./docker/client
context: ./client
path: client
- dockerfile: ./docker/server/Dockerfile
image: ghcr.io/ls1intum/thaii/server
context: ./docker/server
context: ./server
path: server
outputs:
server_image_tag: "${{ steps.output-tag-server.outputs.server_image_tag }}"
Expand Down
1 change: 1 addition & 0 deletions client/src/api/chat.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const fetchChats = async (limit: number) => {
}
};

// Fetch the count of all chats for a user
export const fetchChatsCount = async () => {
try {
const response = await api.get(`/api/v1/chats/count/`);
Expand Down
1 change: 0 additions & 1 deletion server/pages/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from chat.models import Chat
from rest_framework.permissions import IsAuthenticated

# Create your views here.
class PageListView(APIView):
permission_classes = [IsAuthenticated]

Expand Down

0 comments on commit a810d17

Please sign in to comment.