We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c152ba commit 6c1036bCopy full SHA for 6c1036b
models/sync.js
@@ -18,7 +18,7 @@ var syncSchema = new Schema({
18
target: String, // Fully Qualified URL target (should be encodeURIComponent already)
19
response: Number, // HTTP Status Code
20
message: String, // Any message crafted or static
21
- created: Date,
+ created: { type: Date, expires: 60 * 60 * 24 * 30 },
22
updated: Date,
23
24
// Extra info
views/includes/syncList.html
@@ -35,7 +35,7 @@
35
{{^syncList}}
36
<tr class="tr-link">
37
<td colspan="7">
38
- <em>This user hasn't had any tracked syncs yet.</em>
+ <em>This user hasn't had any recently tracked syncs.</em>
39
</td>
40
</tr>
41
{{/syncList}}
0 commit comments