@@ -35,7 +35,7 @@ public void isGuideValid(GuideReq guide) {
35
35
public void isBoothValid (BoothReq booth ) {
36
36
checkStrLength (booth .getTitle (), 1 , 30 );
37
37
checkStrLength (booth .getSubTitle (), 1 , 50 );
38
- checkStrLength (booth .getContent (), 1 , 800 );
38
+ checkStrLength (booth .getContent (), 1 , 1000 );
39
39
checkNumberRange (booth .getLatitude (), -90.0 , 90.0 );
40
40
checkNumberRange (booth .getLongitude (), -180 , 180 );
41
41
String [] typeList = {"FOOD_TRUCK" , "FLEA_MARKET" , "PUB" };
@@ -46,7 +46,7 @@ public void isBoothValid(BoothReq booth) {
46
46
public void isProgramValid (ProgramReq program ) {
47
47
checkStrLength (program .getTitle (), 1 , 30 );
48
48
checkStrLength (program .getSubTitle (), 1 , 50 );
49
- checkStrLength (program .getContent (), 1 , 800 );
49
+ checkStrLength (program .getContent (), 1 , 1000 );
50
50
checkNumberRange (program .getLatitude (), -90.0 , 90.0 );
51
51
checkNumberRange (program .getLongitude (), -180 , 180 );
52
52
String [] typeList = {"EVENT" , "GAME" };
0 commit comments