Module: Lipsiadmin::AccessControl::Authentication

Defined in:
lib/access_control/authentication.rb

Overview

This provide a simple login for backend and frontend. Use backend_login_required in backend and frontend_login_requirded in frontend.

Examples:

  class FrontendController <  ApplicationController
    before_filter :frontend_login_required, :except => [:login]
  end