Sha256: 2ed6c6d510b7f5d4e82b7389d08ecbfbbcbe2b29a5e0cd5c022739a2655f0e86
Contents?: true
Size: 1.82 KB
Versions: 10
Compression:
Stored size: 1.82 KB
Contents
Adminpanel.setup do |config| ### GOOGLE ANALYTICS CONFIGURATIONS #### ## This is your website Google Analytics Profile ID # config.analytics_profile_id = '12341234' # # This configuration identifies your app with Google. # # You get this from the Google Analytics Dashboard (https://console.developers.google.com), this configuration is required. # config.analytics_account_email = '12345@developer.gserviceaccount.com' # # The next configuration is the file used to establish server to server authentication/authorization # # you need to download this file from the Google Developers Console # # and place it inside your application, this configuration is required. # config.analytics_key_filename = '12345ABCDE.p12' # # Path to the key file, defaults to config/analytics # config.analytics_key_path = "config/analytics" # # Name of the developers Console Application, defaults to AdminPanel # config.analytics_application_name = 'AdminPanel' # # Version of the developers Console Application, defaults to 1.0.0 # config.analytics_application_version = '1.0.0' ### FACEBOOK CONFIGURATIONS ### # # Facebook app id # config.fb_app_id = 'f4c3b00k' # # Facebook app secret *MAKE SURE TO DON'T SHARE THIS SECRET* # config.fb_app_secret = 'fbs3cr3t' ### INSTAGRAM CONFIGURATIONS ### # # Instagram consumer key # config.instagram_client_id = '1nst4gr4m' # # Instagram consumer secret *YOU SHOULD KNOW BY NOW* # config.instagram_client_secret = '1nst4s3cr3t' # # This are the modules that are going to be displayed and order that are going to be displayed config.displayable_resources = [ :analytics, :users, :roles, :permissions, #:auths, :sections ] config.displayable_pages = [ # Adminpanel::HomePage, # Adminpanel::AboutUsPage, # Adminpanel::ContactPage ] end
Version data entries
10 entries across 10 versions & 1 rubygems