Add revoke all actions to received blocks resource

This commit is contained in:
Anton Khorev 2024-12-24 07:50:29 +03:00
parent 2df389c97e
commit df1c59280f
10 changed files with 120 additions and 115 deletions

View file

@ -12,6 +12,7 @@ module Users
before_action :lookup_user
before_action :check_database_readable
before_action :check_database_writable, :only => :destroy
##
# shows a list of all the blocks on the given user
@ -27,5 +28,21 @@ module Users
render :partial => "user_blocks/page" if turbo_frame_request_id == "pagination"
end
##
# shows revoke all active blocks page
def edit; end
##
# revokes all active blocks
def destroy
if params[:confirm]
@user.blocks.active.each { |block| block.revoke!(current_user) }
flash[:notice] = t ".flash"
redirect_to user_received_blocks_path(@user)
else
render :action => :edit
end
end
end
end