nick-desteffen/mongoid-scribe

View on GitHub
app/controllers/mongoid/scribe/application_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Mongoid
  module Scribe
    class ApplicationController < ::ApplicationController
      include DocumentsHelper

      if Mongoid::Scribe.authentication_filter
        before_filter Mongoid::Scribe.authentication_filter
      end

    end
  end
end