Skip to content

Commit

Permalink
feat : dto 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
byeolhaha committed May 12, 2024
1 parent e9fa033 commit a08d989
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/develop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
workflow_dispatch:

env:
BUCKET_NAME: hellomeritz-cicd
PROJECT_NAME: hellomeritz
DEPLOYMENT_GROUP_NAME: meritz
BUCKET_NAME: hello-consultant
PROJECT_NAME: hello
DEPLOYMENT_GROUP_NAME: hello-consultant
CODE_DEPLOY_APP_NAME: code-deploy
jobs:
# 작업의 이름
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.hellomeritz.chat.repository.chatentry.dto;

public record ChatRoomEntryGetSessionRequest(
long chatRoomId,
long userId,
boolean isFC
) {
}

0 comments on commit a08d989

Please sign in to comment.