Sha256: e84d9d1a3c1cbab3986c160d66fe9178f05af982d1a98817c5911639dd220ed2

Contents?: true

Size: 688 Bytes

Versions: 2

Compression:

Stored size: 688 Bytes

Contents

module Phcscriptcdnpro
  class ApplicationController < ActionController::Base

    # Security Filters
    protect_from_forgery with: :exception

    # Load Helpers for PHCPress Widgets
    before_action :phcpress_recent_posts

    # Papertrail Whodunnit Username
    def user_for_paper_trail
      # Default is: current_user rescue nil
      current_user ? current_user.username : 'Public user'
    end

    # Load Helpers
    helper Phctitleseo::Engine.helpers
    helper Phcnotifi::Engine.helpers
    helper Phcaccountspro::Engine.helpers

    private

    # PHCPress Widget Helpers
    def phcpress_recent_posts
      @recent_posts = Phcpresspro::Articles::Post.all
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcscriptcdnpro-11.0.1 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-11.0.0 app/controllers/phcscriptcdnpro/application_controller.rb