Sha256: c83b91fb89a570eb6c11f6fe477f11bb1787f2be3601f1139dcd5e513851e4cb

Contents?: true

Size: 1.19 KB

Versions: 16

Compression:

Stored size: 1.19 KB

Contents

CmAdmin::Engine.routes.draw do
  controller 'static' do
    get '/', action: 'dashboard'
    get '/access-denied', action: 'error_403'
  end

  controller 'exports' do
    post '/export_to_file', action: 'export'
  end

  # Defining action routes for each model
  CmAdmin.config.cm_admin_models.each do |model|
    if model.importer
      scope model.name.tableize do
        send(:get, 'import', to: "#{model.name.underscore}#import_form", as: "#{model.name.underscore}_import_form")
        send(:post, 'import', to: "#{model.name.underscore}#import", as: "#{model.name.underscore}_import")
      end
    end
    
    model.available_actions.sort_by {|act| act.name}.each do |act|
      scope model.name.tableize do
        # Define route only when action trail related field is present
        if act.name == 'history'
          if defined?(model.ar_model.new.current_action_name)
            send(:get, ':id/history', to: "#{model.name.underscore}#history", as: "#{model.name.underscore}_history")
          end
        else
          send(act.verb, act.path.present? ? act.path : act.name, to: "#{model.name.underscore}##{act.name}", as: "#{model.name.underscore}_#{act.name}")
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
cm-admin-1.1.9 config/routes.rb
cm-admin-1.1.8 config/routes.rb
cm-admin-1.1.7 config/routes.rb
cm-admin-1.1.6 config/routes.rb
cm-admin-1.1.5 config/routes.rb
cm-admin-1.1.4 config/routes.rb
cm-admin-1.1.3 config/routes.rb
cm-admin-1.1.2 config/routes.rb
cm-admin-1.1.1 config/routes.rb
cm-admin-1.1.0 config/routes.rb
cm-admin-1.0.9 config/routes.rb
cm-admin-1.0.8 config/routes.rb
cm-admin-1.0.7 config/routes.rb
cm-admin-1.0.6 config/routes.rb
cm-admin-1.0.5 config/routes.rb
cm-admin-1.0.3 config/routes.rb