factorize before_filters and layout for projects related controllers

This commit is contained in:
Cyril 2012-09-26 01:21:37 +02:00
parent 0439387be0
commit 078a8f0e66
17 changed files with 33 additions and 101 deletions

View file

@ -1,10 +1,5 @@
class SnippetsController < ApplicationController
before_filter :project
class SnippetsController < ProjectController
before_filter :snippet, only: [:show, :edit, :destroy, :update, :raw]
layout "project"
# Authorize
before_filter :add_project_abilities
# Allow read any snippet
before_filter :authorize_read_snippet!