/**
  * Check for the `gravityview_edit_settings` capability before saving plugin settings.
  * Gravity Forms says you're able to edit if you're able to view settings. GravityView allows two different permissions.
  *
  * @since 1.15
  * @return void
  */
 public function maybe_save_app_settings()
 {
     if ($this->is_save_postback()) {
         if (!GVCommon::has_cap('gravityview_edit_settings')) {
             $_POST = array();
             // If you don't reset the $_POST array, it *looks* like the settings were changed, but they weren't
             GFCommon::add_error_message(__('You don\'t have the ability to edit plugin settings.', 'gravityview'));
             return;
         }
     }
     parent::maybe_save_app_settings();
 }