Class: IronAdmin::Engine

Inherits:
Rails::Engine
  • Object
show all
Defined in:
lib/iron_admin/engine.rb

Overview

Rails Engine that provides the admin panel functionality.

The Engine is mounted in your application's routes to expose the admin panel at a path of your choice (typically /admin).

Examples:

Mounting the engine in config/routes.rb

Rails.application.routes.draw do
  mount IronAdmin::Engine => "/admin"
end

See Also: