diff --git a/app/controllers/app_notifications_controller.rb b/app/controllers/app_notifications_controller.rb index a782975..c106559 100644 --- a/app/controllers/app_notifications_controller.rb +++ b/app/controllers/app_notifications_controller.rb @@ -1,7 +1,8 @@ class AppNotificationsController < ApplicationController unloadable - # helper :app_notifications - # include AppNotificationsHelper + + helper :custom_fields + helper :issues def index @app_notifications = AppNotification.includes(:issue, :author, :journal).where(recipient_id: User.current.id).order("created_on desc") diff --git a/app/helpers/app_notifications_helper.rb b/app/helpers/app_notifications_helper.rb deleted file mode 100644 index dc7db83..0000000 --- a/app/helpers/app_notifications_helper.rb +++ /dev/null @@ -1,5 +0,0 @@ -require File.dirname(__FILE__) + '/../../../../app/helpers/issues_helper' - -module AppNotificationsHelper - include IssuesHelper -end