Sha256: c687c550c35d211b98d00866c4203a3e0e5410d439102d7c64905707aa57c937
Contents?: true
Size: 473 Bytes
Versions: 3
Compression:
Stored size: 473 Bytes
Contents
# All Administrate controllers inherit from this `ApplicationController`, # making it the ideal place to put authentication logic or other # before_filters. # # If you want to add pagination or other controller-level concerns, # you're free to overwrite the RESTful controller actions. class Admin::ApplicationController < Administrate::ApplicationController before_filter :authenticate_admin def authenticate_admin # TODO Add authentication logic here. end end
Version data entries
3 entries across 3 versions & 1 rubygems