-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
export const REPORT_CATEOGRIES = [ | ||
export type ReportCategoryId = 1 | 2 | 3 | 4 | 5 | 6 | 7; | ||
|
||
interface ReportCategory { | ||
id: ReportCategoryId; | ||
name: string; | ||
} | ||
|
||
export const REPORT_CATEOGRIES: ReportCategory[] = [ | ||
{ id: 1, name: '상업적/홍보성' }, | ||
{ id: 2, name: '음란/선정성' }, | ||
{ id: 3, name: '저작권 침해' }, | ||
{ id: 4, name: '개인정보 노출' }, | ||
{ id: 5, name: '욕설/인신공격' }, | ||
{ id: 6, name: '반복적인 내용' }, | ||
{ id: 7, name: '기타' }, | ||
] as const; | ||
]; | ||
|
||
export const MAX_REPORT_CONTENT_LENGTH = 100; |
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