Skip to content

Gatekeeper

Choose a tag to compare

@mindaslab mindaslab released this 30 Nov 07:24
· 41 commits to master since this release

You can't allow your Compass ERP installation to be used by every one. So if one signs up and is not permitted, one sees the following screen

firefox_screenshot_2014-11-30t07-15-28 200z

To allow it you must permit the email address providing it in the admin section as shown

firefox_screenshot_2014-11-30t07-03-16 509z

You can visit the admin section using the following address http://domain_name/admin . You will be prompted for user name and password. The setting of credentials can be fount in app/config/rails_admin.rb as shown below

config.authorize_with do
    authenticate_or_request_with_http_basic('Site Message') do |username, password|
      username == 'mindaslab' && password == 'kaputupak'
    end
end

In the above settings, the user name is mindaslab and the password is kaputupak.