diff --git a/app/controllers/admin/galleries_controller.rb b/app/controllers/admin/galleries_controller.rb index 9865101..57d7ba2 100644 --- a/app/controllers/admin/galleries_controller.rb +++ b/app/controllers/admin/galleries_controller.rb @@ -1,6 +1,7 @@ class Admin::GalleriesController < OrbitAdminController before_filter :setup_vars - before_action :authenticate_user, :log_user_action, :except => "imgs" + before_action :authenticate_user, :except => "imgs" + before_action :log_user_action layout "back_end" def index @albums = Album.all @@ -30,13 +31,10 @@ class Admin::GalleriesController < OrbitAdminController redirect_to admin_galleries_path end - - def destroy album = Album.find(params[:id]) album.destroy redirect_to admin_galleries_path - end def edit