Skip to content

Commit

Permalink
feat(cms): add bluesky link to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Dec 26, 2024
1 parent 6377890 commit b0c6570
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cms/schemaTypes/ama.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default defineType({
defineField({
name: 'content',
title: 'Content',
type: 'string',
type: 'text',
readOnly: true,
}),
defineField({
Expand All @@ -29,5 +29,10 @@ export default defineType({
type: 'boolean',
initialValue: false,
}),
defineField({
name: 'link',
title: 'Bluesky link',
type: 'url',
}),
],
})

0 comments on commit b0c6570

Please sign in to comment.