-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT/A1] 샘플 데이터 추가 및 회원 상태 정지 구현, html 수정 (#70)
* admin_list * admin_list , detail in Controller -ing * figuring Request * feat : temp commit * figuring JPA Entity Admin * figuring list.html with thymeleaf * figuring list controller & list service * feat : temp commit * figuring detail controller , service & html with thymeleaf * figuring Approve * modify for exception and error * finished approve , detail and list figuring * dev * feat : 테이블 명 수정에 따른 쿼리 변경 * feat : AdminBackEnd완료 * Add Modified admin's BackEnd file approvePicture 메서드에 isSessionUserAdmin 주석처리 * Add , modify frontEnd css&html list.html수정 , adminlist.css ,관리자 계정 생성을 위한 form.html 추가 * Add list of Admin and etc for using it 관리자 명단 조회를 위한 메소드 추가 * Add Admin Account form & list 관리자 계정 생성 및 리스트 * feat: modal, index header, footer 수정 #45 * Modify html & css, need to revise detail.html&css html , css 파일 수정 , detail.html&css 개선 필요 * Modify for dependency 의존성 해결을 위한 수정 * feat : Login, Join Link 추가 * Modify code reviewing 사용할 Dto 만 적용가능 하게끔 SignUpAdminRequestDto 작성후 적용 Build패턴-> 해당 Dto만 적용 높은 가시성을 위한 메서드 네이밍 및 경로 재설정 * 안ìì�안쓰는 ì�의존설성 정리 * feat : footer 링크 추가 및 Project 정보 추가 * feat : Header수정, 및 Bootstrap파일 변경을 위해서 Bootstrap 직접 static에서 가져오도록 변경, 관리자 계정 쿼리 추가 * feat : 관리자 UI작업중 * style : footer size 변경 * feat : 로그아웃 li 추가, 로그인시 사용자 닉네임과 포인트 출력 추가 * style : UI Header, 관리자 컷 * feat : 메인페이지 UI - 경매품 이미지 출력 및 Detail페이지로 이동 할 수 있게 a태그 설정. - 출력할 물품이 없는 경우에 맞는 Block추가 - More 버튼 이벤트 추가 - Vanila Javascript Function 생성 및 인자값에 따라 다르게 가져 올 수 있도록 생성. * Modify front_end & admincontroller 컨트롤러 불필요 코드 제거 , html 규격에 맞게 수정중(아직 미완) * Modify Admin HTML html 파일 규격에 맞게끔 수정 * feat : index 누락 태그 추가 * Modify & Add - * Modify error from memberlist.html & Start to add pagenation with JPA memberlist 에러 해결 및 JPA pagenation 구현작업시작 * Add ExamData 예시 데이터 추가 * Modify Example Data 샘플 데이터 수정 * Try to resolve conflicts 충돌 해결 노력 * Modify error 에러수정 --------- Co-authored-by: donsonioc2010 <whddnjs822@gmail.com> Co-authored-by: bongsh0112 <bongsh0112@gmail.com>
- Loading branch information
1 parent
92efab8
commit 42dfda3
Showing
17 changed files
with
898 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
Api/src/main/java/picasso/server/api/admin/exception/NotActiveStatusException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package picasso.server.api.admin.exception; | ||
|
||
import picasso.server.common.exception.BaseException; | ||
|
||
import java.io.NotActiveException; | ||
|
||
import static picasso.server.common.exception.GlobalException.USER_STATUS_NOT_ACTIVE; | ||
|
||
public class NotActiveStatusException extends BaseException { | ||
public static final BaseException EXCEPTION = new NotActiveStatusException(); | ||
private NotActiveStatusException() {super (USER_STATUS_NOT_ACTIVE); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Api/src/main/java/picasso/server/api/admin/exception/NotFoundUserException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package picasso.server.api.admin.exception; | ||
|
||
import picasso.server.common.exception.BaseException; | ||
|
||
import static picasso.server.common.exception.GlobalException.NOT_FOUND_USER_ERROR; | ||
|
||
public class NotFoundUserException extends BaseException { | ||
public static final BaseException EXCEPTION = new NotFoundUserException(); | ||
|
||
public NotFoundUserException() { super(NOT_FOUND_USER_ERROR);} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ser/vo/request/SignUpAdminRequestDto.java → .../admin/request/SignUpAdminRequestDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package picasso.server.api.user.vo.request; | ||
package picasso.server.api.admin.request; | ||
|
||
import lombok.*; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,5 @@ div.admin-title-row{ | |
|
||
form>div.row { | ||
margin-bottom: 5px; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.