aboutsummaryrefslogtreecommitdiff
path: root/src/guff/post.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/guff/post.cr')
-rw-r--r--src/guff/post.cr10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/guff/post.cr b/src/guff/post.cr
new file mode 100644
index 0000000..7247e15
--- /dev/null
+++ b/src/guff/post.cr
@@ -0,0 +1,10 @@
+class Guff:Post
+ def initialize(@row : Hash(String, ::SQLite3::Value))
+ end
+
+ def to_json
+ @row.merge({
+ "tags": @row["tags"].split('|')
+ }).to_json
+ end
+end