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

merge: (#13) Issue Template & Pull-request Template 수정 #14

Merged
merged 6 commits into from
Aug 24, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/do.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ body:
description: |
[추가사항] 별도로 알려줘야 할 사항이나 추가사항을 작성해주세요.
placeholder: |
- [ ] <!-- 추가사항 작성 -->
- [ ] <!-- 추가사항 작성 -->
- <!-- 추가사항 작성 -->
- <!-- 추가사항 작성 -->
8 changes: 7 additions & 1 deletion .github/ISSUE_TEMPLATE/fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ body:
label: Describe
description: |
[설명] 버그에 관한 설명을 간단하게 작성해주세요.
placeholder: |
- [ ] <!-- 버그 내용 작성 -->
- [ ] <!-- 버그 내용 작성 -->
- type: textarea
attributes:
label: Additional
description: |
[추가사항] 별도로 알려줘야 할 사항이나 추가사항을 작성해주세요.
[추가사항] 별도로 알려줘야 할 사항이나 추가사항을 작성해주세요.
placeholder: |
- <!-- 추가사항 작성 -->
- <!-- 추가사항 작성 -->
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
- [ ] <!-- 작업 내용 작성 -->

## 주요 변경 사항
- [ ] <!-- 변경 사항 작성 -->
- [ ] <!-- 변경 사항 작성 -->
- <!-- 변경 사항 작성 -->
- <!-- 변경 사항 작성 -->

## 체크리스트
- [ ] 어플리케이션 구동(혹은 테스트)시 오류는 없나요?
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package team.comit.simtong.domain.user.model

/**
*
* 유저(직원, 관리자)의 권한을 관리하는 enum Authority
*
* @author kimbeomjin
* @date 2022/08/21
*
* 유저(직원, 관리자)의 권한을 관리하는 enum Authority
softpeanut marked this conversation as resolved.
Show resolved Hide resolved
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
enum class Authority {
ROLE_COMMON, ROLE_ADMIN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import javax.persistence.Id
import javax.persistence.MappedSuperclass

/**
*
* pk의 타입이 UUID 이고 created_at 컬럼이 필요한 경우 상속받는 BaseEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* pk의 타입이 UUID 이고 created_at 컬럼이 필요한 경우 상속받는 BaseEntity
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@MappedSuperclass
abstract class BaseEntity(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import javax.persistence.MappedSuperclass
import javax.validation.constraints.NotNull

/**
*
* createdAt 컬럼이 필요한 경우 상속받는 BaseTimeEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* createdAt 컬럼이 필요한 경우 상속받는 BaseTimeEntity
*
* @author kimbeomjin
* @date 2022/08/22
* @version 1.0.0
**/
@MappedSuperclass
abstract class BaseTimeEntity(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import javax.persistence.Id
import javax.persistence.MappedSuperclass

/**
*
* pk의 타입이 UUID 일 경우 상속받는 BaseUUIDEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* pk의 타입이 UUID 일 경우 상속받는 BaseUUIDEntity
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@MappedSuperclass
abstract class BaseUUIDEntity(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import team.comit.simtong.persistence.spot.entity.SpotJpaEntity
import java.util.*

/**
*
* Spring Repository의 기능을 이용하는 SpotJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
*
* Spring Repository의 기능을 이용하는 SpotJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Repository
interface SpotJpaRepository : CrudRepository<SpotJpaEntity, UUID> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ import javax.persistence.Table
import javax.validation.constraints.NotNull

/**
*
* 지점에 대해 관리하는 SpotJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* 지점에 대해 관리하는 SpotJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Entity
@Table(name = "tbl_spot")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import team.comit.simtong.persistence.team.entity.TeamJpaEntity
import java.util.*

/**
*
* Spring Repository의 기능을 이용하는 TeamJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
*
* Spring Repository의 기능을 이용하는 TeamJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Repository
interface TeamJpaRepository : CrudRepository<TeamJpaEntity, UUID> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ import javax.persistence.Table
import javax.validation.constraints.NotNull

/**
*
* 지점에 속한 팀을 관리하는 TeamJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* 지점에 속한 팀을 관리하는 TeamJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Entity
@Table(name = "tbl_team")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import team.comit.simtong.persistence.user.entity.DeviceTokenJpaEntity
import java.util.*

/**
*
* Spring Repository의 기능을 이용하는 DeviceTokenJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
*
* Spring Repository의 기능을 이용하는 DeviceTokenJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Repository
interface DeviceTokenJpaRepository : CrudRepository<DeviceTokenJpaEntity, UUID> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import team.comit.simtong.persistence.user.entity.UserJpaEntity
import java.util.*

/**
*
* Spring Repository의 기능을 이용하는 UserJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
*
* Spring Repository의 기능을 이용하는 UserJpaRepository
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Repository
interface UserJpaRepository : CrudRepository<UserJpaEntity, UUID> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ import javax.persistence.Table
import javax.validation.constraints.NotNull

/**
*
* 유저(직원, 관리자)의 디바이스 토큰을 관리하는 DeviceTokenJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* 유저(직원, 관리자)의 디바이스 토큰을 관리하는 DeviceTokenJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Entity
@Table(name = "tbl_device")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ import javax.persistence.Table
import javax.validation.constraints.NotNull

/**
*
* 유저(직원, 관리자) 정보를 관리하는 UserJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
*
* 유저(직원, 관리자) 정보를 관리하는 UserJpaEntity
*
* @author kimbeomjin
* @date 2022/08/21
* @version 1.0.0
**/
@Entity
@Table(name = "tbl_user")
Expand Down