mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Use before_action instead of before_filter
This commit is contained in:
parent
c9a2d0654e
commit
d750709250
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ end
|
|||
class TestController < ApplicationController
|
||||
include Rails.application.routes.url_helpers
|
||||
|
||||
before_filter :authenticate_user!
|
||||
before_action :authenticate_user!
|
||||
|
||||
def index
|
||||
render plain: 'Home'
|
||||
|
|
Loading…
Reference in a new issue