Name

global.GlideSystemAjax

Description

No description available

Script

var GlideSystemAjax = Class.create();
GlideSystemAjax.PROPERTY_NAME='sysparm_property';

GlideSystemAjax.prototype = Object.extendsObject(AbstractAjaxProcessor, {
  isPublic: function() {
      return true;
  },

  process: function() {      
      if (this[this.getName()])
          return this[this.getName()]();
  },

  newGuid: function() {
      return gs.generateGUID('');
  },

  cacheFlush: function() {
      if ( gs.hasRole("admin") )
          gs.cacheFlush();
  },

  isLoggedIn: function() {
      return gs.isLoggedIn();
  },

  type: "GlideSystemAjax"
});

Sys ID

b5750d470a0a0b5c009f380a304be4f4

Offical Documentation

Official Docs: