Use settings pack for InvitesController (#229)
This commit is contained in:
		
							parent
							
								
									f0b37f92a9
								
							
						
					
					
						commit
						6a5ba9d129
					
				
					 1 changed files with 5 additions and 0 deletions
				
			
		| 
						 | 
					@ -6,6 +6,7 @@ class InvitesController < ApplicationController
 | 
				
			||||||
  layout 'admin'
 | 
					  layout 'admin'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  before_action :authenticate_user!
 | 
					  before_action :authenticate_user!
 | 
				
			||||||
 | 
					  before_action :set_pack
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def index
 | 
					  def index
 | 
				
			||||||
    authorize :invite, :create?
 | 
					    authorize :invite, :create?
 | 
				
			||||||
| 
						 | 
					@ -37,6 +38,10 @@ class InvitesController < ApplicationController
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private
 | 
					  private
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def set_pack
 | 
				
			||||||
 | 
					    use_pack 'settings'
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def resource_params
 | 
					  def resource_params
 | 
				
			||||||
    params.require(:invite).permit(:max_uses, :expires_in)
 | 
					    params.require(:invite).permit(:max_uses, :expires_in)
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue