Remote follow improvements
This stores the @username@instance you provide in your session and reuses it the next time you remote follow someone from this instance.
This commit is contained in:
		
							parent
							
								
									bda37489ac
								
							
						
					
					
						commit
						f7e35d90db
					
				
					 1 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -8,6 +8,7 @@ class RemoteFollowController < ApplicationController
 | 
			
		|||
 | 
			
		||||
  def new
 | 
			
		||||
    @remote_follow = RemoteFollow.new
 | 
			
		||||
    @remote_follow.acct = session[:remote_follow] if session.key?(:remote_follow)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def create
 | 
			
		||||
| 
						 | 
				
			
			@ -22,6 +23,8 @@ class RemoteFollowController < ApplicationController
 | 
			
		|||
        render(:new) && return
 | 
			
		||||
      end
 | 
			
		||||
 | 
			
		||||
      session[:remote_follow] = @remote_follow.acct
 | 
			
		||||
 | 
			
		||||
      redirect_to Addressable::Template.new(redirect_url_link.template).expand(uri: "#{@account.username}@#{Rails.configuration.x.local_domain}").to_s
 | 
			
		||||
    else
 | 
			
		||||
      render :new
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue