Conflicts: - Gemfile.lock - app/controllers/accounts_controller.rb - app/controllers/admin/dashboard_controller.rb - app/controllers/follower_accounts_controller.rb - app/controllers/following_accounts_controller.rb - app/controllers/remote_follow_controller.rb - app/controllers/stream_entries_controller.rb - app/controllers/tags_controller.rb - app/javascript/packs/public.js - app/lib/sanitize_config.rb - app/models/account.rb - app/models/form/admin_settings.rb - app/models/media_attachment.rb - app/models/stream_entry.rb - app/models/user.rb - app/serializers/initial_state_serializer.rb - app/services/batched_remove_status_service.rb - app/services/post_status_service.rb - app/services/process_mentions_service.rb - app/services/reblog_service.rb - app/services/remove_status_service.rb - app/views/admin/settings/edit.html.haml - config/locales/simple_form.pl.yml - config/settings.yml - docker-compose.yml
		
			
				
	
	
		
			45 lines
		
	
	
		
			813 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			813 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class RemoteFollowController < ApplicationController
 | 
						|
  include AccountOwnedConcern
 | 
						|
 | 
						|
  layout 'modal'
 | 
						|
 | 
						|
  before_action :set_pack
 | 
						|
  before_action :set_body_classes
 | 
						|
 | 
						|
  def new
 | 
						|
    @remote_follow = RemoteFollow.new(session_params)
 | 
						|
  end
 | 
						|
 | 
						|
  def create
 | 
						|
    @remote_follow = RemoteFollow.new(resource_params)
 | 
						|
 | 
						|
    if @remote_follow.valid?
 | 
						|
      session[:remote_follow] = @remote_follow.acct
 | 
						|
      redirect_to @remote_follow.subscribe_address_for(@account)
 | 
						|
    else
 | 
						|
      render :new
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def resource_params
 | 
						|
    params.require(:remote_follow).permit(:acct)
 | 
						|
  end
 | 
						|
 | 
						|
  def session_params
 | 
						|
    { acct: session[:remote_follow] }
 | 
						|
  end
 | 
						|
 | 
						|
  def set_pack
 | 
						|
    use_pack 'modal'
 | 
						|
  end
 | 
						|
 | 
						|
  def set_body_classes
 | 
						|
    @body_classes = 'modal-layout'
 | 
						|
    @hide_header  = true
 | 
						|
  end
 | 
						|
end
 |