* Remove Connect
* Remove more Connect specs
* Remove a lot more Connect code
* 🚮
* It all has to go
* Explicitly add httpclient
* Update application layout
* Remove messages association from User
* Start fixing specs
* reintroduce util function and refactor references
* Remove Connect Cypress test
* Fix more specs
* Remove Connect from listings
* Ignore contact_via_connect column on listings
* Remove contact_via_connect usages
* Ignore mod_chat_channel_id on tags
* Drop Connect tables
* Remove email_connect_messages from user notification settings
* Re-add httpclient 2.8.3
This was mistakenly removed as a merge conflict
* Don't need to exclude removed chat channel file
* Remove unneeded style for chat channels
* Remove unneeded channel list prop type
* Remove chat channels index/connect-link from getPageEntries
* Re-add comment from httpclient in Gemfile
* Remove connect references from mailers
Tag Moderators no longer have a chat channel
No longer will users be notified about new messages (there won't be
any)
No longer will users be notified about channel invites (you can't
invite anyone anymore)
* Don't configure Pusher and remove PUSHER_* from .env_sample
since it's removed from gemfile, the Pusher constant will not resolve, if this is
configured in the environment variables we'll fail to boot.
Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
Co-authored-by: Dan Uber <dan@forem.com>
55 lines
1.5 KiB
Ruby
55 lines
1.5 KiB
Ruby
class UserBlocksController < ApplicationController
|
|
before_action :check_sign_in_status
|
|
after_action :verify_authorized
|
|
|
|
def show
|
|
skip_authorization
|
|
|
|
if current_user.blocking?(params[:blocked_id].to_i)
|
|
render json: { result: "blocking" }
|
|
else
|
|
render json: { result: "not-blocking" }
|
|
end
|
|
end
|
|
|
|
def create
|
|
authorize UserBlock
|
|
@user_block = UserBlock.new(permitted_attributes(UserBlock))
|
|
@user_block.blocker_id = current_user.id
|
|
@user_block.config = "default"
|
|
|
|
if @user_block.save
|
|
current_user.stop_following(@user_block.blocked)
|
|
@user_block.blocked.stop_following(current_user)
|
|
render json: { result: "blocked" }
|
|
else
|
|
render json: { error: @user_block.errors_as_sentence, status: 422 }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
if current_user.blocking_others_count.zero?
|
|
skip_authorization
|
|
render json: { result: "not-blocking-anyone" }
|
|
return
|
|
end
|
|
|
|
@user_block = UserBlock.find_by!(blocked_id: permitted_attributes(UserBlock)[:blocked_id], blocker: current_user)
|
|
authorize @user_block
|
|
|
|
if @user_block.destroy
|
|
render json: { result: "unblocked" }
|
|
else
|
|
render json: { error: @user_block.errors_as_sentence, status: 422 }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def check_sign_in_status
|
|
return if current_user
|
|
|
|
skip_authorization
|
|
render json: { result: "not-logged-in", status: 401 }, status: :unauthorized
|
|
end
|
|
end
|