Skip to content

Commit fb85b2c

Browse files
committed
Add work-in-progress flag
1 parent 26bc882 commit fb85b2c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ The following fields are appreciated, but not strictly required:
7171
| repository | Repository or URL where the source can be found | String |
7272
| gameWebsite | Game website/page | String |
7373
| devWebsite | Developer personal website/page | String |
74-
| onlineplay | Allow or not the game to be played directly on the website | Boolean (`true` or `false`) |
74+
| onlineplay | Allow or not the game to be played directly on the website | Boolean |
75+
| wip | Flag a game as work-in-progress (not yet completely stable/bugfree) | Boolean |
7576

7677

7778
The possible categories are: `RPG`, `Open Source`, `Adventure`, `Action`, `Puzzle`, `Platform`.

schema.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ var gameSchema = mongoose.Schema({
2020
repository : String,
2121
gameWebsite : String,
2222
devWebsite : String,
23-
onlineplay : Boolean
23+
onlineplay : Boolean,
24+
wip : Boolean
2425

2526
}
2627
});

0 commit comments

Comments
 (0)