Add Markdown editor to admin area

This commit is contained in:
Daniel Nitsikopoulos
2024-09-29 17:09:23 +10:00
parent 37a4508ec4
commit be63fb49c7
12 changed files with 2039 additions and 60 deletions

View File

@@ -0,0 +1,13 @@
module Admin
module Actions
module Posts
class New < Action
include Deps["views.posts.new"]
def handle(req, res)
res.render new
end
end
end
end
end