A human-friendly DSL for ATProto Lexicons
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix playground

+3 -3
+3 -3
website/templates/playground.html
··· 13 13 <textarea id="mlf-editor" spellcheck="false">/// A forum thread 14 14 record thread { 15 15 /// Thread title 16 - title: string constrained { 16 + title!: string constrained { 17 17 maxLength: 200, 18 18 minLength: 1, 19 19 }, 20 20 /// Thread body 21 - body?: string constrained { 21 + body: string constrained { 22 22 maxLength: 10000, 23 23 }, 24 24 /// Thread creation timestamp 25 - createdAt: Datetime, 25 + createdAt!: Datetime, 26 26 }</textarea> 27 27 </div> 28 28