Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 내 행사 조회 기능 추가 #846

Merged
merged 1 commit into from
Dec 10, 2024
Merged

[BE] 내 행사 조회 기능 추가 #846

merged 1 commit into from
Dec 10, 2024

Conversation

Arachneee
Copy link
Contributor

@Arachneee Arachneee commented Dec 8, 2024

issue

구현 사항

내 행사 조회 기능 추가

API

GET /api/events/mine

Response

{
    "events": [
        {
            "eventId": "238ab144-11a0-4028-bc3b-f49b512ec66f",
            "eventName": "행동대앚",
            "isFinished": false,
            "createdAt": "2024-12-08T14:52:28.613223"
        },
        {
            "eventId": "238ab144-11a0-4028-bc3b-f49b512ec66f",
            "eventName": "행동대앚",
            "isFinished": false,
            "createdAt": "2024-12-08T14:52:28.613223"
        },
        {
            "eventId": "238ab144-11a0-4028-bc3b-f49b512ec66f",
            "eventName": "행동대앚",
            "isFinished": false,
            "createdAt": "2024-12-08T14:52:28.613223"
        }
    ]
}

@Arachneee Arachneee added ⌨️ BE Backend ⚙️ feat feature labels Dec 8, 2024
@Arachneee Arachneee added this to the v2.2.0 milestone Dec 8, 2024
@Arachneee Arachneee self-assigned this Dec 8, 2024
Copy link

github-actions bot commented Dec 8, 2024

Test Results

135 tests  ±0   135 ✅ ±0   7s ⏱️ ±0s
 25 suites ±0     0 💤 ±0 
 25 files   ±0     0 ❌ ±0 

Results for commit b164d6e. ± Comparison against base commit 6981dcc.

Copy link
Contributor

@jinhokim98 jinhokim98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

백호 고생했습니다~ 용어 관련 코멘트 하나 남겨놨어요

import java.time.ZoneId;

public record EventMineAppResponse(
String eventId,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

다음 회의 때 이야기해도 좋을 것 같은것이 레벨 4 용어 맞추기 회의 때 이벤트id를 이벤트토큰으로 바꾸자는 이야기가 있었어요! 재논의해보면 좋을 것 같습니다

Event event = Fixture.EVENT1;
EventMember eventMember1 = new EventMember(1L, event, "소하", false);
EventMember eventMember2 = new EventMember(2L, event, "감자", false);
EventMember eventMember3 = new EventMember(3L, event, "쿠키", false);
EventMember eventMember4 = new EventMember(4L, event, "고구마", false);
EventMember eventMember5 = new EventMember(5L, event, "조커", false);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

조커 무섭네요;,,

@Arachneee Arachneee changed the title feat: 내 행사 조회 기능 추가 [BE] 내 행사 조회 기능 추가 Dec 10, 2024
@Arachneee Arachneee merged commit 682017b into be-dev Dec 10, 2024
3 checks passed
@Arachneee Arachneee deleted the feature/#845 branch December 10, 2024 05:54
Arachneee added a commit that referenced this pull request Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: ✅ Done
Development

Successfully merging this pull request may close these issues.

2 participants