Skip to content

Commit

Permalink
Merge pull request #116 from codesquad-members-2023/release-fe
Browse files Browse the repository at this point in the history
SSH 주소 수정
  • Loading branch information
CDBchan authored Nov 2, 2023
2 parents d6b3762 + be2796e commit 232e7a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fe/src/constants/Endpoints.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export const BASE_URL = "https://controlg.store";
export const BASE_URL_WITH_PORT = "https://controlg.store:8080";
export const WEB_SOCKET_URL = "wss://controlg.store";
export const API_ENDPOINTS = {
LOGIN: (queryString) =>
Expand Down Expand Up @@ -37,6 +36,6 @@ export const API_ENDPOINTS = {
STOMP_SEND: `/pub/message`,
CHAT_LIST: (groupId) =>
`${BASE_URL}/api/chats${groupId ? `?groupId=${groupId}` : ""}`,
SSH_CONNECTION: (memberId) => `${BASE_URL_WITH_PORT}/connect/${memberId}`,
SSH_CONNECTION: (memberId) => `${BASE_URL}/connect/${memberId}`,
CHAT_ROOM_DELETE: (chatRoomId) => `${BASE_URL}/api/chats/${chatRoomId}`,
};

0 comments on commit 232e7a3

Please sign in to comment.