Skip to content

Commit

Permalink
feat(vil-612): fix lint error for activity content
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanJuz committed Nov 22, 2024
1 parent ff82c4a commit a9023b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/controllers/activity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ const CREATE_SCHEMA: JSONSchemaType<CreateActivityData> = {
},
content: {
type: 'array',
game: null,
items: {
type: 'object',
properties: {
Expand Down Expand Up @@ -374,6 +375,7 @@ const UPDATE_A_SCHEMA: JSONSchemaType<UpdateActivity> = {
},
content: {
type: 'array',
game: null,
items: {
type: 'object',
properties: {
Expand Down
2 changes: 2 additions & 0 deletions server/controllers/pelicoPresentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const CREATE_SCHEMA: JSONSchemaType<CreatePelicoData> = {
properties: {
content: {
type: 'array',
game: null,
items: {
type: 'object',
properties: {
Expand Down Expand Up @@ -69,6 +70,7 @@ const UPDATE_SCHEMA: JSONSchemaType<UpdatePelicoData> = {
properties: {
content: {
type: 'array',
game: null,
items: {
type: 'object',
properties: {
Expand Down

0 comments on commit a9023b1

Please sign in to comment.