Commit 2976a8f6c9ed09f501e159e5598bc0650a9845b2

Authored by Rafael Manzo
Committed by Rafael Manzo
1 parent 57c803cb

For better readability changed before_filter by before_action

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/controllers/projects_controller.rb
1 1 class ProjectsController < ApplicationController
2   - before_filter :authenticate_user!,
  2 + before_action :authenticate_user!,
3 3 except: [:index, :show]
4 4  
5 5 # GET /projects/new
... ...