Add active blocks list api endpoint with empty response

This commit is contained in:
Anton Khorev 2025-01-01 04:40:34 +03:00
parent f5af8befa9
commit 6d558003aa
4 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,13 @@
module Api
module UserBlocks
class ActiveListsController < ApiController
before_action :authorize
authorize_resource :class => :active_user_blocks_list
before_action :set_request_formats
def show; end
end
end
end