about summary refs log tree commit diff
path: root/config/routes.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-06-01 17:31:36 +0200
committerGitHub <noreply@github.com>2022-06-01 17:31:36 +0200
commit28329ba62f90890b110517f6da69ca81d588f2f5 (patch)
tree4027950e3e59b14c98056aaee0028df27272cc4d /config/routes.rb
parentf5783182c39b07cb119861edb6db6a1c9b2213e9 (diff)
Add /api/v1/admin/domain_blocks (#18247)
* Add /api/v1/admin/domain_blocks

Fixes #18140

- `GET /api/v1/admin/domain_blocks` lists domain blocks
- `GET /api/v1/admin/domain_blocks/:id` shows one by ID
- `DELETE /api/v1/admin/domain_blocks/:id` deletes a given domain block
- `POST /api/v1/admin/domain_blocks` to create a new domain block:
  if it conflicts with an existing one, returns an error with
  an attribute `existing_domain_block` with the rendered domain block

* Simplify conflict handling as suggested in review
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index b05d31e4e..dfce94929 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -559,6 +559,8 @@ Rails.application.routes.draw do
           end
         end
 
+        resources :domain_blocks, only: [:index, :show, :update, :create, :destroy]
+
         namespace :trends do
           resources :tags, only: [:index]
           resources :links, only: [:index]