Skip to content

Commit

Permalink
hotfix: 2024 추억 데이터 분기 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yangchef1 committed May 7, 2024
1 parent 4dfa5e9 commit 5d311de
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions galleries/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ def get(self, request):

one = [] # 2021년
two = [] # 2022년
three = [] # 2023년 // 사이드프로젝트 이어받는 분들 이 다음부터 2024년은 four 2025년은 five 하시면 됩니다.
three = [] # 2023년 // 사이드프로젝트 이어받는 분들 이 다음부터 2024년은 four 2025년은 five 하시면 됩니다.
four = []

for gallery in gallery_list:
if gallery['date'][0:4] == '2021':
Expand All @@ -46,15 +47,21 @@ def get(self, request):
'date' : gallery['date'],
'thumbnail' : gallery['thumbnail'],
})

elif gallery['date'][0:4] == '2024':
four.append({
'id' : gallery['gallery_id'],
'title' : gallery['title'],
'date' : gallery['date'],
'thumbnail' : gallery['thumbnail'],
})

return Response(data={
"message" : "success",
"data" : {
"2021" : one,
"2022" : two,
"2023" : three,
# "2024" : four,
"2024" : four,
}
}, status=status.HTTP_200_OK)

Expand Down

0 comments on commit 5d311de

Please sign in to comment.