Sha256: fe5ce4f149124370f2ce315105f58ef678533f8ca88687ffb25414a5a5945187

Contents?: true

Size: 439 Bytes

Versions: 3

Compression:

Stored size: 439 Bytes

Contents

module Dhatu
  class ApplicationController < Kuppayam::BaseController
    
    include Usman::AuthenticationHelper
    
    before_action :current_user
    before_action :require_user
    before_action :require_site_admin
    
    helper_method :breadcrumb_home_path

    private

    def set_default_title
      set_title("Dhatu - CMS for your website")
    end

    def breadcrumb_home_path
      dhatu.dashboard_path
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dhatu-0.3.9.pre.materialize app/controllers/dhatu/application_controller.rb
dhatu-0.3.8.pre.materialize app/controllers/dhatu/application_controller.rb
dhatu-0.3.7.pre.materialize app/controllers/dhatu/application_controller.rb