Sha256: 14e6b25a0c9b3d5a0ec59f364a5cb1fa06c92f6285294ef176e6eacc8063e408

Contents?: true

Size: 1.13 KB

Versions: 25

Compression:

Stored size: 1.13 KB

Contents

#ErpApp

Provides an application infrastructure based on the Sencha/extjs UI framework, as well as several utilities and example applications. It houses the core application container framework and component model infrastructure that play a key role in the RAD/Agile orientation of CompassAE.

##Initializer Options

- widgets
  - This should be let as an empty array.  CompassAE will add any available widgets if finds.
  - Default : []
- session_warn_after
  - This is the time in minutes when the user will be warned that thier session is about to expire due to inactivity.
  - Default : 18
- session_redirect_after
  - This is the time in minutes a user will be redirected to the login screen. It should be set to mimic your Rails configuration
  - Default : 20

### Override Initializer

To override these settings simple create a erp_app.rb file in your initializers and override the config options you want

    Rails.application.config.erp_app.configure do |config|
      config.widgets = []
      config.session_warn_after = 18 #in minutes
      config.session_redirect_after = 20 #in minutes
    end
    Rails.application.config.erp_app.configure!

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
erp_app-3.1.16 README.md
erp_app-3.1.15 README.md
erp_app-3.1.14 README.md
erp_app-3.1.13 README.md
erp_app-3.1.12 README.md
erp_app-3.1.11 README.md
erp_app-3.1.10 README.md
erp_app-3.1.9 README.md
erp_app-3.1.8 README.md
erp_app-3.1.7 README.md
erp_app-3.1.6 README.md
erp_app-3.1.5 README.md
erp_app-3.1.4 README.md
erp_app-3.1.3 README.md
erp_app-3.1.2 README.md
erp_app-3.0.16 README.md
erp_app-3.0.15 README.md
erp_app-3.1.1 README.md
erp_app-3.1.0 README.md
erp_app-3.0.14 README.md