Fix error when trying to revoke OAuth token without supplying a token (#18205)
This commit is contained in:
		
							parent
							
								
									6da648227e
								
							
						
					
					
						commit
						5a48bf1085
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -2,7 +2,8 @@
 | 
			
		|||
 | 
			
		||||
class Oauth::TokensController < Doorkeeper::TokensController
 | 
			
		||||
  def revoke
 | 
			
		||||
    unsubscribe_for_token if authorized? && token.accessible?
 | 
			
		||||
    unsubscribe_for_token if token.present? && authorized? && token.accessible?
 | 
			
		||||
 | 
			
		||||
    super
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue