Added wordcloud tool

This commit is contained in:
tsoganov 2025-05-14 10:56:58 +03:00
parent 0a06a36499
commit ee3ec443b3
20 changed files with 932 additions and 1 deletions

View file

@ -0,0 +1,14 @@
module Admin
class ToolsController < BaseController
before_action :authorize_admin
# GET /admin/tools
def index; end
private
def authorize_admin
authorize! :access, :tools
end
end
end