Commit aa27108e authored by Stan Hu's avatar Stan Hu

Merge pull request #9791 from konpyu/fix-deprecated

Fix deprecated `prepend_before_filter` -> `prepend_before_action`
parents 5782217b 31723eb9
class ProjectsController < ApplicationController
include ExtractsPath
prepend_before_filter :render_go_import, only: [:show]
prepend_before_action :render_go_import, only: [:show]
skip_before_action :authenticate_user!, only: [:show, :activity]
before_action :project, except: [:new, :create]
before_action :repository, except: [:new, :create]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment