Add auto tagger for posts

This commit is contained in:
2023-05-06 19:58:59 +10:00
parent c4bd903e74
commit 9f8359d782
25 changed files with 424 additions and 2 deletions

View File

@@ -60,6 +60,11 @@ module Adamantium
get "/tags", to: "tags.index"
delete "/tags/:id", to: "tags.delete"
get "/tags/auto_tagging", to: "auto_tagging.index"
get "/tags/auto_tagging/new", to: "auto_tagging.new"
post "/tags/auto_tagging", to: "auto_tagging.create"
delete "/tags/auto_taggings/:id", to: "auto_tagging.delete"
end
end
end