Sha256: e94fc690ff98a8e5587e451edf3bb17a77268a40ffe0015af2978073437c77db

Contents?: true

Size: 234 Bytes

Versions: 5

Compression:

Stored size: 234 Bytes

Contents

require_dependency "flms/application_controller"

module Flms
  class DashboardController < ApplicationController
    before_filter :authenticate_user!
    layout 'flms/admin'

    def index
      @pages = Page.all
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flms-0.9.0 app/controllers/flms/dashboard_controller.rb
flms-0.1.0 app/controllers/flms/dashboard_controller.rb
flms-0.0.3 app/controllers/flms/dashboard_controller.rb
flms-0.0.2 app/controllers/flms/dashboard_controller.rb
flms-0.0.1 app/controllers/flms/dashboard_controller.rb