mirror of
https://github.com/internetee/registry.git
synced 2025-08-17 06:53:53 +02:00
Added wordcloud tool
This commit is contained in:
parent
0a06a36499
commit
ee3ec443b3
20 changed files with 932 additions and 1 deletions
14
app/controllers/admin/tools_controller.rb
Normal file
14
app/controllers/admin/tools_controller.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue