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

유저는 기본 avatarUrl을 갖는다. #521

Merged
merged 5 commits into from
Dec 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[BE] fix: REDIS HOST 환경변수에 대한 타입 수정
  • Loading branch information
lsh23 committed Dec 7, 2023
commit 48efb52060b146c0fbb1f54cffda67ffacd1161d
2 changes: 1 addition & 1 deletion BE/src/config/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const configServiceModuleOptions = {
GROUP_AVATAR_URLS: Joi.string().required(),
USER_AVATAR_URLS: Joi.string().required(),

REDIS_HOST: Joi.number().when('NODE_ENV', {
REDIS_HOST: Joi.string().when('NODE_ENV', {
is: 'production',
then: Joi.required(),
otherwise: Joi.optional(),
Expand Down
Loading