mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
e381c3fe52
* create NewsletterSubscription Model * create subscribe and unsubcribe actions, update cloud-sdk, policies & routes * Add newsletter email layout * add newsletter form, update styles and page script * Update cloud.setup.js * lint fixes * Update homepage.less * unsubscribe-from-newsletter » unsubscribe-from-all-newsletters * remove unused exit * comment out unused attributes, update assets/.eslintrc * update layout * update layout after updating from main * Update actions and routes * lint fix
47 lines
1.2 KiB
JavaScript
Vendored
47 lines
1.2 KiB
JavaScript
Vendored
/**
|
|
* Policy Mappings
|
|
* (sails.config.policies)
|
|
*
|
|
* Policies are simple functions which run **before** your actions.
|
|
*
|
|
* For more information on configuring policies, check out:
|
|
* https://sailsjs.com/docs/concepts/policies
|
|
*/
|
|
|
|
module.exports.policies = {
|
|
|
|
'*': 'is-logged-in',
|
|
|
|
// Bypass the `is-logged-in` policy for:
|
|
'entrance/*': true,
|
|
'webhooks/*': true,
|
|
'account/logout': true,
|
|
'view-homepage-or-redirect': true,
|
|
'view-faq': true,
|
|
'view-contact': true,
|
|
'view-get-started': true,
|
|
'view-pricing': true,
|
|
'legal/view-terms': true,
|
|
'legal/view-privacy': true,
|
|
'deliver-contact-form-message': true,
|
|
'view-query-detail': true,
|
|
'view-query-library': true,
|
|
'docs/*': true,
|
|
'handbook/*': true,
|
|
'download-sitemap': true,
|
|
'view-transparency': true,
|
|
'view-press-kit': true,
|
|
'view-platform': true,
|
|
'view-landing': true,
|
|
'deliver-demo-signup': true,
|
|
'articles/*': true,
|
|
'reports/*': true,
|
|
'view-sales-one-pager': true,
|
|
'try-fleet/view-register': true,
|
|
'try-fleet/view-sandbox-login': true,
|
|
'try-fleet/view-sandbox-teleporter-or-redirect-because-expired': true,
|
|
'create-or-update-one-newsletter-subscription': true,
|
|
'unsubscribe-from-all-newsletters': true,
|
|
|
|
};
|