Sha256: 1be84183b29f69457bb07775dacd8ada1c2275550e6c9ae22476674e5ce5df23

Contents?: true

Size: 1.1 KB

Versions: 139

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

# Provides admin interface routing configuration accessors.
#
# Alchemy has some defaults for admin path and admin constraints:
#
# +Alchemy.admin_path defaults to +'admin'+
# +Alchemy.admin_constraints defaults to +{}+
#
# Anyway, you can tell Alchemy about your routing configuration:
#
#   1. The path to the admin panel - @see: Alchemy.admin_path
#   2. The constraints for the admin panel (like subdomain) - @see: Alchemy.admin_constraints
#
# A word of caution: you need to know what you are doing if you set admin_path to ''. This can cause
# routing name clashes, e.g. a page named 'dashboard' will clash with the Alchemy dashboard.
#
# == Example
#
# If you do not wish to use the default admin interface routing ('example.com/admin')
# and prefer e.g. 'hidden.example.com/backend', those are the settings you need:
#
#     # config/initializers/alchemy.rb
#     Alchemy.admin_path = 'backend'
#     Alchemy.admin_constraints = {subdomain: 'hidden'}
#
module Alchemy
  mattr_accessor :admin_path, :admin_constraints

  # Defaults
  #
  @@admin_path = "admin"
  @@admin_constraints = {}
end

Version data entries

139 entries across 139 versions & 1 rubygems

Version Path
alchemy_cms-7.1.9 lib/alchemy/paths.rb
alchemy_cms-7.0.14 lib/alchemy/paths.rb
alchemy_cms-7.2.1 lib/alchemy/paths.rb
alchemy_cms-7.0.13 lib/alchemy/paths.rb
alchemy_cms-7.1.8 lib/alchemy/paths.rb
alchemy_cms-7.1.7 lib/alchemy/paths.rb
alchemy_cms-7.0.12 lib/alchemy/paths.rb
alchemy_cms-7.0.11 lib/alchemy/paths.rb
alchemy_cms-7.1.6 lib/alchemy/paths.rb
alchemy_cms-7.1.5 lib/alchemy/paths.rb
alchemy_cms-7.0.10 lib/alchemy/paths.rb
alchemy_cms-7.1.4 lib/alchemy/paths.rb
alchemy_cms-7.0.9 lib/alchemy/paths.rb
alchemy_cms-7.1.3 lib/alchemy/paths.rb
alchemy_cms-7.1.2 lib/alchemy/paths.rb
alchemy_cms-7.1.1 lib/alchemy/paths.rb
alchemy_cms-7.1.0 lib/alchemy/paths.rb
alchemy_cms-7.1.0.pre.rc1 lib/alchemy/paths.rb
alchemy_cms-7.1.0.pre.b2 lib/alchemy/paths.rb
alchemy_cms-7.1.0.pre.b1 lib/alchemy/paths.rb