[bugfix]for category controller, before calling authorize, should call find_project

This commit is contained in:
Toru Takahashi 2018-05-23 03:55:42 +09:00 committed by TAKAHASHI,Toru
parent 4c7956ffa8
commit 7fa90d3427

View File

@ -1,8 +1,7 @@
class GlossaryCategoriesController < ApplicationController
before_action :authorize
before_action :find_category_from_id, only: [:show, :edit, :update, :destroy]
before_action :find_project_from_id
before_action :find_project_from_id, :authorize
def index
@categories = GlossaryCategory.where(project_id: @project.id)