[#887] afficher la liste des dossiers à l'utilisateur

This commit is contained in:
Tanguy PATTE 2015-09-23 12:04:57 +02:00
parent ca363ca095
commit 8c549bf27b
10 changed files with 69 additions and 12 deletions

View file

@ -0,0 +1,6 @@
class Users::DossiersController < ApplicationController
before_action :authenticate_user!
def index
@dossiers = Dossier.all.decorate
end
end