File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
postgres :
2
- image : " postgres:9.4 "
2
+ image : " postgres:9.5 "
3
3
ports :
4
4
- " 5432:5432"
5
5
environment :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const createProjectValdiations = {
23
23
body : {
24
24
param : Joi . object ( ) . keys ( {
25
25
name : Joi . string ( ) . required ( ) ,
26
- description : Joi . string ( ) . required ( ) ,
26
+ description : Joi . string ( ) . allow ( null ) ,
27
27
billingAccountId : Joi . number ( ) . positive ( ) ,
28
28
utm : Joi . object ( ) . keys ( {
29
29
source : Joi . string ( ) . allow ( null ) ,
Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ definitions:
416
416
properties :
417
417
name :
418
418
type : string
419
- description : project name
419
+ description : project name (required)
420
420
description :
421
421
type : string
422
422
description : Project description
@@ -937,4 +937,4 @@ definitions:
937
937
content :
938
938
type : array
939
939
items :
940
- $ref : " #/definitions/Project"
940
+ $ref : " #/definitions/Project"
You can’t perform that action at this time.
0 commit comments