Skip to content

Commit

Permalink
Merge pull request #226 from PawWithU/docs/225-notification-data-add
Browse files Browse the repository at this point in the history
[Docs] 알림 목록 더미 데이터 추가
  • Loading branch information
kyeong-hyeok authored Jun 2, 2024
2 parents 6615aef + ca7712f commit ce79b52
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ spring:

servlet:
multipart:
max-file-size: 10MB
max-request-size: 10MB
max-file-size: 20MB
max-request-size: 20MB
13 changes: 12 additions & 1 deletion src/main/resources/import.sql
Original file line number Diff line number Diff line change
Expand Up @@ -544,4 +544,15 @@ INSERT INTO bookmark(id, post_id, volunteer_id, created_date, modified_date) VAL
INSERT INTO bookmark(id, post_id, volunteer_id, created_date, modified_date) VALUES (22, 7, 6, now(), now());
INSERT INTO bookmark(id, post_id, volunteer_id, created_date, modified_date) VALUES (23, 8, 6, now(), now());
INSERT INTO bookmark(id, post_id, volunteer_id, created_date, modified_date) VALUES (24, 9, 6, now(), now());
INSERT INTO bookmark(id, post_id, volunteer_id, created_date, modified_date) VALUES (25, 10, 6, now(), now());
INSERT INTO bookmark(id, post_id, volunteer_id, created_date, modified_date) VALUES (25, 10, 6, now(), now());

INSERT INTO volunteer_notification(id, image, notification_type, title, body, volunteer_id, is_read, created_date, modified_date) VALUES (1, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post13.png', 'REJECTED', '이동봉사 반려', '모집 기간이 마감되어 이동봉사가 반려되었어요😥', 3, false, now(), now());
INSERT INTO volunteer_notification(id, image, notification_type, title, body, volunteer_id, is_read, created_date, modified_date) VALUES (2, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post12.png', 'CONFIRMED', '이동봉사 승인', '이동봉사가 승인되었어요🎉\n모집자의 연락을 기다려 주세요!', 3, false, now(), now());
INSERT INTO volunteer_notification(id, image, notification_type, title, body, volunteer_id, is_read, created_date, modified_date) VALUES (3, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post11.png', 'COMPLETED', '이동봉사 완료', '이동봉사 진행이 완료되었어요🐾\n소중한 후기를 들려주세요!', 3, false, now(), now());

INSERT INTO intermediary_notification(id, image, notification_type, title, body, intermediary_id, is_read, created_date, modified_date) VALUES (1, '1', 'APPLICATION', '이동봉사 신청', '승구님이 이동봉사를 신청하셨어요.\n지금 확인해 보세요!', 2, false, now(), now());
INSERT INTO intermediary_notification(id, image, notification_type, title, body, intermediary_id, is_read, created_date, modified_date) VALUES (2, '2', 'CANCELED', '이동봉사 신청 취소', '호정님이 이동봉사를 취소하셨어요.\n해당 공고는 모집중 상태로 변경됩니다.', 2, false, now(), now());
INSERT INTO intermediary_notification(id, image, notification_type, title, body, intermediary_id, is_read, created_date, modified_date) VALUES (3, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post8.png', 'REVIEW_REGISTERED', '이동봉사 후기 등록', '봉사 후기가 등록되었습니다.\n지금 확인해 보세요!', 2, false, now(), now());
INSERT INTO intermediary_notification(id, image, notification_type, title, body, intermediary_id, is_read, created_date, modified_date) VALUES (4, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post7.png', 'BEFORE_EXPIRED', '공고 마감', '공고 마감이 12시간 남았어요.', 2, false, now(), now());
INSERT INTO intermediary_notification(id, image, notification_type, title, body, intermediary_id, is_read, created_date, modified_date) VALUES (5, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post6.png', 'EXPIRED', '이동봉사 모집기간 만료', '모집 기간 만료로 공고가 마감되었습니다.', 2, false, now(), now());
INSERT INTO intermediary_notification(id, image, notification_type, title, body, intermediary_id, is_read, created_date, modified_date) VALUES (6, 'https://connectdog-image.s3.ap-northeast-2.amazonaws.com/post/post5.png', 'COMPLETED_REQUEST', '이동봉사 진행 완료', '이동봉사 진행이 완료되었나요?\n봉사 완료 버튼을 눌러주세요!', 2, false, now(), now());

0 comments on commit ce79b52

Please sign in to comment.