diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-08-27 20:56:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 20:56:47 +0200 |
commit | b399d79545e5e5430cb9d6a2c936efc244b69a75 (patch) | |
tree | 8a94c88f64223803aa1d9ea5bf15437229122dbe /config | |
parent | ff19dad5a05dba689122b0427886c8375491571a (diff) |
Add admin API for managing IP blocks (#19065)
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index dff0add3a..1168c9aee 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -591,6 +591,7 @@ Rails.application.routes.draw do resources :domain_allows, only: [:index, :show, :create, :destroy] resources :domain_blocks, only: [:index, :show, :update, :create, :destroy] + resources :ip_blocks, only: [:index, :show, :update, :create, :destroy] namespace :trends do resources :tags, only: [:index] |