-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecure.html
More file actions
19 lines (16 loc) · 780 Bytes
/
Copy pathsecure.html
File metadata and controls
19 lines (16 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template name="secure">
{{> loginButtons}}
<ul>
{{#each thread in threads}}
<li>
{{thread.title}} - {{thread.createdAt}} - {{thread.owner}}
<button class="delete-direct" data-id="{{thread._id}}">X direct</button>
<button class="delete-methods" data-id="{{thread._id}}">X methods</button>
</li>
{{/each}}
</ul>
<button id="create-thread-direct">Create Thread (direct insert)</button>
<button id="create-thread-direct-with-fake-user-id">Create Thread (direct insert with fake user id)</button>
<button id="create-thread-direct-with-deletedat">Create Thread (direct insert with deletedAt)</button>
<button id="create-thread-methods">Create Thread (using methods)</button>
</template>